Passed
Push — master ( 3b543f...d6def4 )
by RN
01:47
created
src/Dolphin/Utils/Utils.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -50,16 +50,16 @@
 block discarded – undo
50 50
         return $destination;
51 51
     }
52 52
     
53
-     /**
54
-     * Turn the stadClass object to the type of calling Model
55
-     *
56
-     * @param String $destination
57
-     * @param Object $sourceObject
58
-     * @return Object $destination
59
-     *
60
-     * @author RN Kushwaha <[email protected]>
61
-     * @since v0.0.5
62
-     */
53
+        /**
54
+         * Turn the stadClass object to the type of calling Model
55
+         *
56
+         * @param String $destination
57
+         * @param Object $sourceObject
58
+         * @return Object $destination
59
+         *
60
+         * @author RN Kushwaha <[email protected]>
61
+         * @since v0.0.5
62
+         */
63 63
     public function turnObjects($destination, $data)
64 64
     {
65 65
         $destination = new $destination();
Please login to merge, or discard this patch.
src/Dolphin/Dolphin.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -287,8 +287,8 @@  discard block
 block discarded – undo
287 287
                 $this->results = $stmt->fetch(\PDO::FETCH_OBJ);
288 288
 
289 289
                 if(count($this->results) ){
290
-                  // now turn this stdClass object to the object type of calling model
291
-                  $rows = $util->turnObject($this->className, $this->results);
290
+                    // now turn this stdClass object to the object type of calling model
291
+                    $rows = $util->turnObject($this->className, $this->results);
292 292
                 }
293 293
                 // Reset class variables
294 294
                 $this->reset();
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
 
299 299
             $this->results = $stmt->fetchAll(\PDO::FETCH_ASSOC);
300 300
             if(count($this->results) ){
301
-              $rows = $util->turnObjects($this->className, $this->results);
301
+                $rows = $util->turnObjects($this->className, $this->results);
302 302
             }
303 303
             // Reset class variables
304 304
             $this->reset();
Please login to merge, or discard this patch.
src/Dolphin/Save.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -23,16 +23,16 @@
 block discarded – undo
23 23
     }
24 24
 
25 25
     public function buildQueryStrSingleFromArr($row = array()){
26
-      $ar = [];
27
-      $query = "UPDATE ".$this->table." SET ";
28
-      foreach($row as $key => $val){
29
-          $ar[':'.$key] = $val;
30
-          if($key == 'id') continue;
31
-          $query.= $this->qb->quote($key)." =:".$key.",";
32
-      }
33
-      $query = rtrim($query, ",");
26
+        $ar = [];
27
+        $query = "UPDATE ".$this->table." SET ";
28
+        foreach($row as $key => $val){
29
+            $ar[':'.$key] = $val;
30
+            if($key == 'id') continue;
31
+            $query.= $this->qb->quote($key)." =:".$key.",";
32
+        }
33
+        $query = rtrim($query, ",");
34 34
 
35
-      return ['ar' => $ar, 'query' => $query];
35
+        return ['ar' => $ar, 'query' => $query];
36 36
     }
37 37
     public function createQuery($row){
38 38
         $ar = [];
Please login to merge, or discard this patch.