Completed
Pull Request — master (#117)
by
unknown
04:12
created
src/Drivers/Pdo/Connection.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,8 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
         try{
51 51
             $stm->execute();
52
-        }
53
-        catch(\PDOException $exception){
52
+        } catch(\PDOException $exception){
54 53
             throw new DatabaseException($exception->getMessage() . ' [' . $query . ']');
55 54
         }
56 55
 
@@ -140,8 +139,7 @@  discard block
 block discarded – undo
140 139
             }
141 140
 
142 141
             return new MultiResultSet($statement);
143
-        }
144
-        else
142
+        } else
145 143
         {
146 144
             foreach($queue as $sql)
147 145
             {
Please login to merge, or discard this patch.
src/Drivers/ConnectionBase.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
             } else {
113 113
                 return $value;
114 114
             }
115
-        }  elseif (is_array($value)) {
115
+        } elseif (is_array($value)) {
116 116
             // Supports MVA attributes
117 117
             return '('.implode(',', $this->quoteArr($value)).')';
118 118
         }
Please login to merge, or discard this patch.