Completed
Push — master ( 4625ee...769e0f )
by Ivannis Suárez
03:31
created
ArrayCollection/ArrayList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
             $criteria = new Comparator();
133 133
         }
134 134
 
135
-        uasort($this->elements, function ($a, $b) use ($criteria) {
135
+        uasort($this->elements, function($a, $b) use ($criteria) {
136 136
             return $criteria->compare($a, $b);
137 137
         });
138 138
     }
Please login to merge, or discard this patch.
Tests/Units/SetTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
                         ->isEqualTo(\count($items))
82 82
             ->and()
83 83
             ->then()
84
-                ->exception(function () use ($collection) {
84
+                ->exception(function() use ($collection) {
85 85
                     $collection->addAll(100);
86 86
                 })->isInstanceOf(\InvalidArgumentException::class)
87 87
         ;
Please login to merge, or discard this patch.