Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class PostgresGrammar extends Base |
||
11 | { |
||
12 | use CompilesPostgresGroupLimit, CompilesPostgresExpressions { |
||
13 | CompilesPostgresGroupLimit::compileSelect as compileSelect1; |
||
14 | CompilesPostgresExpressions::compileSelect as compileSelect2; |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * Compile a select query into SQL. |
||
19 | * |
||
20 | * @param \Illuminate\Database\Query\Builder $query |
||
21 | * @return string |
||
22 | */ |
||
23 | 43 | public function compileSelect(Builder $query) |
|
32 |