Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class PostgresBuilder extends Base |
||
8 | { |
||
9 | use ManagesViews { |
||
10 | stringifyBindings as parentStringifyBindings; |
||
11 | } |
||
12 | |||
13 | /** |
||
14 | * Stringify the query bindings. |
||
15 | * |
||
16 | * @param array $bindings |
||
17 | * @return array |
||
18 | */ |
||
19 | 9 | protected function stringifyBindings(array $bindings) |
|
28 | } |
||
29 | |||
30 | /** |
||
31 | * Get the bindings for a "Has View" statement. |
||
32 | * |
||
33 | * @param string $view |
||
34 | * @return array |
||
35 | */ |
||
36 | 3 | protected function getBindingsForHasView($view) |
|
43 |