Completed
Push — master ( 79c6ec...a70ad9 )
by Iqbal
02:30
created
src/ReadModel/Storage/Pdo/Parser/PostgresParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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':
Please login to merge, or discard this patch.
src/ReadModel/Storage/Pdo/PdoConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.