@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | */ |
29 | 29 | protected function transformComparison($comparison) |
30 | 30 | { |
31 | - switch(strtoupper($comparison)) { |
|
31 | + switch (strtoupper($comparison)) { |
|
32 | 32 | case 'LIKE': |
33 | 33 | return 'ILIKE'; |
34 | 34 | case 'NOT LIKE': |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | protected function transformField($comparison, $field) |
48 | 48 | { |
49 | - switch(strtoupper($comparison)) { |
|
49 | + switch (strtoupper($comparison)) { |
|
50 | 50 | case 'LIKE': |
51 | 51 | case 'NOT LIKE': |
52 | 52 | case 'ILIKE': |
@@ -167,7 +167,7 @@ |
||
167 | 167 | */ |
168 | 168 | protected function createParser() |
169 | 169 | { |
170 | - switch(strtolower($this->engine)) { |
|
170 | + switch (strtolower($this->engine)) { |
|
171 | 171 | case 'pgsql': |
172 | 172 | return new PostgresParser(); |
173 | 173 | } |