Completed
Push — master ( 41a21b...bf2b7c )
by Ivannis Suárez
03:51
created
Tests/Units/ListTestCase.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.
ArrayCollection/ArraySet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
             $criteria = new Comparator();
136 136
         }
137 137
 
138
-        uasort($this->elements, function ($a, $b) use ($criteria) {
138
+        uasort($this->elements, function($a, $b) use ($criteria) {
139 139
             return $criteria->compare($a, $b);
140 140
         });
141 141
     }
Please login to merge, or discard this patch.