Browse Source

Merge branch 'develop'

develop
Fabien Normand 2 years ago
parent
commit
d52bdce047
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      Repository/AbstractRepositoryQuery.php

+ 6
- 1
Repository/AbstractRepositoryQuery.php View File

return $this; return $this;
}*/ }*/


// @TODO : créer un addOrderBy et un orderBy
public function orderBy(string $field, string $sort = 'ASC'): self public function orderBy(string $field, string $sort = 'ASC'): self
{ {
if (strpos($field, '.')!==false) { if (strpos($field, '.')!==false) {
} }
} }


public function setOrderBy(string $field, string $sort = 'ASC'): self
{
$this->resetDQLParts(['orderBy']);
return $this->orderBy($field, $sort);
}

public function filterById(int $id):self public function filterById(int $id):self
{ {
return $this return $this

Loading…
Cancel
Save