Completed
Push — master ( 0f0d44...086ffd )
by Ahmet
02:05
created
src/qb.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -169,10 +169,10 @@  discard block
 block discarded – undo
169 169
             switch ($this->_write_field_types[$d]) {
170 170
             case 0:
171 171
               $t .= "'" . $this->_write_values[$d] . "'";
172
-              break;
173
-          default:
172
+                break;
173
+            default:
174 174
               $t .= $this->_write_values[$d];
175
-          }
175
+            }
176 176
             $updates[] = $t;
177 177
         }
178 178
         $update_fields = implode(", ", $updates);
@@ -195,10 +195,10 @@  discard block
 block discarded – undo
195 195
             switch ($this->_write_field_types[$d]) {
196 196
             case 0:
197 197
               $values[] = "'" . $this->_write_values[$d] . "'";
198
-              break;
198
+                break;
199 199
             default:
200 200
               $values[] = $this->_write_values[$d];
201
-          }
201
+            }
202 202
         }
203 203
         $string = sprintf('insert into %1$s (%2$s) values(%3$s)', $table, $fields, implode(", ", $values));
204 204
         return $string;
Please login to merge, or discard this patch.