Completed
Push — master ( ba1e76...42f011 )
by Iqbal
02:46
created
src/ReadModel/Storage/Pdo/Parser/DefaultParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
     public function comparison($field, $comparison, $value)
39 39
     {
40 40
         return
41
-            $this->quote . $field . $this->quote . ' ' .
42
-            $this->transformComparison($comparison, $value) . ' ' .
41
+            $this->quote.$field.$this->quote.' '.
42
+            $this->transformComparison($comparison, $value).' '.
43 43
             $this->normalizeValue($value);
44 44
     }
45 45
 
Please login to merge, or discard this patch.
src/ReadModel/Storage/Pdo/Parser/PostgresParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     {
16 16
         return sprintf(
17 17
             '%s %s %s',
18
-            $this->transformField($comparison, $this->quote . $field . $this->quote),
18
+            $this->transformField($comparison, $this->quote.$field.$this->quote),
19 19
             $this->transformComparison($comparison, $value),
20 20
             $this->normalizeValue($value)
21 21
         );
Please login to merge, or discard this patch.