Passed
Push — master ( c4e5b8...821407 )
by Marcio
02:34
created
src/Ballybran/Core/Collections/Collection/ValidateDot.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         $this->elements = &$items;
33 33
     }
34 34
 
35
-	/**
35
+    /**
36 36
      * Return all the stored items
37 37
      *
38 38
      * @return array
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     }
58 58
 
59 59
    
60
-      /*
60
+        /*
61 61
      * --------------------------------------------------------------
62 62
      * ArrayAccess interface
63 63
      * --------------------------------------------------------------
@@ -127,12 +127,12 @@  discard block
 block discarded – undo
127 127
         return true;
128 128
     }
129 129
  	
130
- 	/**
131
-     * Set a given key / value pair or pairs
132
-     *
133
-     * @param array|int|string $keys
134
-     * @param mixed $value
135
-     */
130
+        /**
131
+         * Set a given key / value pair or pairs
132
+         *
133
+         * @param array|int|string $keys
134
+         * @param mixed $value
135
+         */
136 136
     public function set($keys, $value = null)
137 137
     {
138 138
         if (is_array($keys)) {
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
             $value = array_merge($items, $this->getArrayItems($value));
188 188
             $this->set($key, $value);
189 189
         } 
190
-         $this->elements = array_merge($this->elements, $key->all());
190
+            $this->elements = array_merge($this->elements, $key->all());
191 191
         
192 192
     }
193 193
 
Please login to merge, or discard this patch.
src/Ballybran/Core/Collections/Collection/IteratorCollection.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,12 +127,12 @@
 block discarded – undo
127 127
         if (!isset($offset)) {
128 128
             $this->set($offset, $value);
129 129
         }
130
-         $this->set($offset, $value);
130
+            $this->set($offset, $value);
131 131
     }
132 132
 
133 133
     public function offsetUnset($offset)
134 134
     {
135
-         $this->remove($offset);
135
+            $this->remove($offset);
136 136
     }
137 137
 
138 138
     public function containsKey($key)
Please login to merge, or discard this patch.