Passed
Push — master ( 62ae3a...ac7f19 )
by Francis
01:10
created
libraries/RefactorCI.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
 
12 12
   private $primaryKey;
13 13
 
14
-  function __construct($params=null) {
15
-    $this->ci =& get_instance();
14
+  function __construct($params = null) {
15
+    $this->ci = & get_instance();
16 16
     $this->ci->load->config("refactor", false, true);
17 17
     $this->init($params == null ? [] : $params);
18 18
   }
@@ -38,24 +38,24 @@  discard block
 block discarded – undo
38 38
     }
39 39
     // Bools
40 40
     if (isset($rule['bools'])) {
41
-      foreach($rule['bools'] as $boolKey) {
41
+      foreach ($rule['bools'] as $boolKey) {
42 42
         $object[$boolKey] = $object[$boolKey] == 1 || $object[$boolKey] == 'true';
43 43
       }
44 44
     }
45 45
     // Cast
46
-    if (isset($rule['cast']))  {
46
+    if (isset($rule['cast'])) {
47 47
       $this->cast_fields($object, $rule);
48 48
     }
49 49
     // Objects
50 50
     if (isset($rule['objects'])) {
51
-      foreach($rule['objects'] as $field => $data) {
51
+      foreach ($rule['objects'] as $field => $data) {
52 52
         $ids = json_decode($object[$field]);
53 53
         if (is_scalar($ids)) {
54 54
           // JSON Array wasn't supplied. Let's treat it as a scaler ID.
55 55
           $this->ci->db->where($this->primaryKey, $ids);
56 56
           $query = $this->ci->db->get($data['table']);
57 57
           if ($query->num_rows() == 0) {
58
-            $object[$field] = json_encode (json_decode ("{}"));
58
+            $object[$field] = json_encode(json_decode("{}"));
59 59
             continue;
60 60
           }
61 61
           $object[$field] = $query->result_array()[0];
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
           continue;
64 64
         }
65 65
         $object[$field] = [];
66
-        foreach($ids as $id) {
66
+        foreach ($ids as $id) {
67 67
           $this->ci->db->where($this->primaryKey, $id);
68 68
           $query = $this->ci->db->get($data['table']);
69 69
           if ($query->num_rows() == 0) {
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
    *                       associative array.
84 84
    */
85 85
   private function unset_values(array &$object, &$rule):void {
86
-    foreach($rule['unset'] as $key) {
86
+    foreach ($rule['unset'] as $key) {
87 87
       unset($object[$key]);
88 88
     }
89 89
   }
Please login to merge, or discard this patch.