Passed
Push — 1.x ( 27ae5b...55e062 )
by Ulises Jeremias
02:44
created
Mbh/Collection/Traits/Sequenceable/LinkedList.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -345,11 +345,11 @@
 block discarded – undo
345 345
      */
346 346
     public function indexOf($value, callable $callback = null)
347 347
     {
348
-        $equal = $f ?? function ($a, $b) {
348
+        $equal = $f ?? function($a, $b) {
349 349
             return $a === $b;
350 350
         };
351 351
 
352
-        $filter = $this->filter(function ($item) use ($equal, $value) {
352
+        $filter = $this->filter(function($item) use ($equal, $value) {
353 353
             return $equal($item, $value);
354 354
         });
355 355
 
Please login to merge, or discard this patch.