1 | <?php |
||
11 | abstract class RestRepository extends EntityRepository |
||
12 | { |
||
13 | /** |
||
14 | * @return QueryBuilder |
||
15 | */ |
||
16 | abstract public function getBaseQuery(); |
||
17 | |||
18 | 3 | public function getListQuery(array $sortConfiguration, $sortQuery) |
|
28 | |||
29 | 3 | private function prepareRequestSort(array $sortConfiguration, $sortQuery) |
|
54 | } |
||
55 |