Passed
Push — main ( 440f49...00eeb9 )
by Peter
02:41
created
tests/MySQLTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,13 +30,13 @@
 block discarded – undo
30 30
 
31 31
         $this->sut = new QueryBuilder();
32 32
 
33
-        $dns      = sprintf(
33
+        $dns = sprintf(
34 34
             'mysql:dbname=%s;host=%s',
35 35
             getenv('MYSQL_DATABASE'),
36 36
             'mysql'
37 37
         );
38 38
         $username = getenv('MYSQL_USER');
39
-        $password =getenv('MYSQL_PASSWORD');
39
+        $password = getenv('MYSQL_PASSWORD');
40 40
         $options  = null;
41 41
 
42 42
         $this->pdo = new PDO($dns, $username, $password, $options);
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
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
         $this->sut = new QueryBuilder();
31 31
 
32
-        $dns      = sprintf(
32
+        $dns = sprintf(
33 33
             'pgsql:dbname=%s;host=%s',
34 34
             getenv('POSTGRES_DB'),
35 35
             'postgres'
Please login to merge, or discard this patch.