Passed
Push — main ( 0c2f80...877d81 )
by Peter
02:47
created
src/Generic/Expr/Expr.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
         $start = implode('?', array_slice($parts, 0, $pos));
180 180
         $end   = implode('?', array_slice($parts, $pos));
181 181
 
182
-        $this->sql        = $start . $qs . $end;
182
+        $this->sql = $start . $qs . $end;
183 183
         $this->extendedBy += $fixedParamCount - 1;
184 184
     }
185 185
 
Please login to merge, or discard this patch.
tests/MySQLTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
         $this->sut = new Factory();
28 28
 
29
-        $dns      = sprintf(
29
+        $dns = sprintf(
30 30
             'mysql:dbname=%s;host=%s',
31 31
             $_ENV['MYSQL_DATABASE'],
32 32
             'mysql'
Please login to merge, or discard this patch.
tests/PostgreSQLTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
         $this->sut = new Factory();
27 27
 
28
-        $dns      = sprintf(
28
+        $dns = sprintf(
29 29
             'pgsql:dbname=%s;host=%s',
30 30
             $_ENV['POSTGRES_DB'],
31 31
             'postgres'
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
                 ->addValues('bcd', 'Budapest', '+36 70 101 1234', '', 'Hungary', '1011', 'NA')
174 174
 
175 175
                 ->setReturning('*');
176
-            $sql   = (string)$query;
176
+            $sql = (string)$query;
177 177
 
178 178
             $statement = $this->pdo->prepare($sql);
179 179
 
Please login to merge, or discard this patch.