Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | trait CompilesSQLiteGroupLimit |
||
9 | { |
||
10 | use CompilesGroupLimit { |
||
11 | compileGroupLimit as compileGroupLimitParent; |
||
12 | } |
||
13 | |||
14 | /** |
||
15 | * Compile a group limit clause. |
||
16 | * |
||
17 | * @param \Illuminate\Database\Query\Builder $query |
||
18 | * @return string |
||
19 | */ |
||
20 | 28 | protected function compileGroupLimit(Builder $query) |
|
33 |