Completed
Push — master ( 55c956...cdcbe6 )
by Lars
02:11 queued 15s
created
src/Arrayy.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1525,11 +1525,11 @@  discard block
 block discarded – undo
1525 1525
             ),
1526 1526
             \COUNT_NORMAL
1527 1527
         )
1528
-               ===
1529
-               \count(
1530
-                   $needles,
1531
-                   \COUNT_NORMAL
1532
-               );
1528
+                ===
1529
+                \count(
1530
+                    $needles,
1531
+                    \COUNT_NORMAL
1532
+                );
1533 1533
     }
1534 1534
 
1535 1535
     /**
@@ -3459,15 +3459,15 @@  discard block
 block discarded – undo
3459 3459
 
3460 3460
         if ($recursive === true) {
3461 3461
             return $this->array_keys_recursive($this->toArray())
3462
-                   ===
3463
-                   \range(0, \count($this->toArray(), \COUNT_RECURSIVE) - 1);
3462
+                    ===
3463
+                    \range(0, \count($this->toArray(), \COUNT_RECURSIVE) - 1);
3464 3464
         }
3465 3465
 
3466 3466
         // non recursive
3467 3467
 
3468 3468
         return \array_keys($this->toArray())
3469
-               ===
3470
-               \range(0, \count($this->toArray(), \COUNT_NORMAL) - 1);
3469
+                ===
3470
+                \range(0, \count($this->toArray(), \COUNT_NORMAL) - 1);
3471 3471
     }
3472 3472
 
3473 3473
     /**
Please login to merge, or discard this patch.