Completed
Push — ci-build-matrix ( da9fdb...1c3307 )
by Hung
01:42
created
src/Drivers/ConnectionBase.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
         } elseif (is_float($value)) {
143 143
             // Convert to non-locale aware float to prevent possible commas
144 144
             return sprintf('%F', $value);
145
-        }  elseif (is_array($value)) {
145
+        } elseif (is_array($value)) {
146 146
             // Supports MVA attributes
147 147
             return '('.implode(',', $this->quoteArr($value)).')';
148 148
         }
Please login to merge, or discard this patch.
src/Drivers/Pdo/Connection.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,7 @@
 block discarded – undo
38 38
 
39 39
         try{
40 40
             $stm->execute();
41
-        }
42
-        catch(\PDOException $exception){
41
+        } catch(\PDOException $exception){
43 42
             throw new DatabaseException($exception->getMessage() . ' [' . $query . ']');
44 43
         }
45 44
 
Please login to merge, or discard this patch.