Passed
Push — main ( dbb244...2b5ece )
by Peter
02:02
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.