Completed
Push — master ( 7a6bdd...324ce1 )
by Sébastien
09:34
created
src/Connection/ConnectionRegistry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
         }
125 125
 
126 126
         if (!isset($this->parametersMap[$connectionName])) {
127
-            throw new DBALException('Connection name "' . $connectionName . '" is not set');
127
+            throw new DBALException('Connection name "'.$connectionName.'" is not set');
128 128
         }
129 129
 
130 130
         $parameters = $this->parametersMap[$connectionName];
Please login to merge, or discard this patch.
src/Connection/Factory/ConnectionFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
         // Replace 'adapter' with 'driver' and add 'pdo_'
66 66
         if (isset($parameters['adapter'])) {
67
-            $parameters['driver'] = 'pdo_' . $parameters['adapter'];
67
+            $parameters['driver'] = 'pdo_'.$parameters['adapter'];
68 68
             unset($parameters['adapter']);
69 69
         }
70 70
 
Please login to merge, or discard this patch.