Passed
Push — master ( 243e49...d8ebde )
by Marcio
06:34 queued 03:58
created
src/Ballybran/Core/Collections/Collection/IteratorCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 
261 261
         $subsetItems = array_slice($this->elements, $start, $length);
262 262
 
263
-            if(null === $subsetItems ){
263
+            if (null === $subsetItems) {
264 264
                     return null;
265 265
             }
266 266
         return $this->setElementsFromTrustedSource($subsetItems);
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
     public function reverse()
271 271
     {
272 272
         $item = array_reverse($this->elements);
273
-            if(null === $item ){
273
+            if (null === $item) {
274 274
                     return null;
275 275
             }
276 276
 
Please login to merge, or discard this patch.