Passed
Push — main ( 2b5ece...48a507 )
by Peter
02:13
created
tests/MySQLTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $this->sut = new Factory();
24 24
 
25
-        $dns      = sprintf(
25
+        $dns = sprintf(
26 26
             'mysql:dbname=%s;host=%s',
27 27
             $_ENV['MYSQL_DATABASE'],
28 28
             '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
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     {
23 23
         $this->sut = new Factory();
24 24
 
25
-        $dns      = sprintf(
25
+        $dns = sprintf(
26 26
             'pgsql:dbname=%s;host=%s',
27 27
             $_ENV['POSTGRES_DB'],
28 28
             'postgres'
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
                 ->addValues('bcd', 'Budapest', '+36 70 101 1234', '', 'Hungary', '1011', 'NA')
171 171
 
172 172
                 ->setReturning('*');
173
-            $sql   = (string)$query;
173
+            $sql = (string)$query;
174 174
 
175 175
             $statement = $this->pdo->prepare($sql);
176 176
 
Please login to merge, or discard this patch.
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.