Passed
Push — main ( 13b794...8a18ed )
by Peter
02:34
created
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.