Passed
Push — master ( 014b36...c0bcf8 )
by RN
01:47
created
src/Dolphin/Save.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,9 @@
 block discarded – undo
28 28
             $query = "UPDATE ".$this->table." SET ";
29 29
             foreach($row as $key => $val){
30 30
                 $ar[':'.$key] = $val;
31
-                if($key == 'id') continue;
31
+                if($key == 'id') {
32
+                    continue;
33
+                }
32 34
                 $query.= $this->qb->quote($key)." =:".$key.",";
33 35
             }
34 36
 
Please login to merge, or discard this patch.