Passed
Push — main ( 87ff77...29cbd1 )
by Peter
09:57
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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         $this->sut = new Factory();
29 29
 
30
-        $dns      = sprintf(
30
+        $dns = sprintf(
31 31
             'pgsql:dbname=%s;host=%s',
32 32
             $_ENV['POSTGRES_DB'],
33 33
             'postgres'
Please login to merge, or discard this patch.