Total Complexity | 5 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Special extends BaseClause |
||
12 | { |
||
13 | /** |
||
14 | * @var array |
||
15 | */ |
||
16 | public static $reserve_param = [ |
||
17 | 'f_params' => [ |
||
18 | 'limit', |
||
19 | 'orderBy', |
||
20 | ], |
||
21 | ]; |
||
22 | |||
23 | /** |
||
24 | * @param $query |
||
25 | * |
||
26 | * @throws \Exception |
||
27 | * |
||
28 | * @return Builder |
||
29 | */ |
||
30 | public function apply($query): Builder |
||
49 |