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