Passed
Branch master (0ce5eb)
by Ryuichi
02:27
created
Category
ConnectionManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 
85 85
             $this->classpathMap[$container->filepath] = $dsnHash;
86 86
 
87
-            $this->connectionContainer->{$dsnHash} = function () use ($driverClassPath, $databaseConfigContainer, $logger) {
87
+            $this->connectionContainer->{$dsnHash} = function() use ($driverClassPath, $databaseConfigContainer, $logger) {
88 88
                 $driver = new $driverClassPath($databaseConfigContainer);
89 89
                 $driver->inject('logger', $logger);
90 90
 
Please login to merge, or discard this patch.
Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
         try {
121 121
             $stmt = $this->driver->getStatement($this->sql);
122 122
             if ($stmt === false) {
123
-                throw new DatabaseException("Can't create statement: ". $this->sql);
123
+                throw new DatabaseException("Can't create statement: " . $this->sql);
124 124
             }
125 125
             $this->logger->info("Executed SQL: " . $this->sql);
126 126
             foreach ($this->bind as $key => $value) {
Please login to merge, or discard this patch.