@@ -132,7 +132,7 @@ |
||
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 | } |
@@ -81,7 +81,7 @@ |
||
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 | ; |