@@ -28,7 +28,7 @@ |
||
28 | 28 | $collator = $this->collator; |
29 | 29 | uksort( |
30 | 30 | $values, |
31 | - static function ($first, $second) use ($collator) : int { |
|
31 | + static function($first, $second) use ($collator) : int { |
|
32 | 32 | /** @var int|false $result */ |
33 | 33 | $result = $collator->compare((string) $first, (string) $second); |
34 | 34 | if (false === $result) { |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function sort(array $values) : array |
32 | 32 | { |
33 | - if (! $this->collator->asort($values, $this->sortType)) { |
|
33 | + if (!$this->collator->asort($values, $this->sortType)) { |
|
34 | 34 | throw IntlSortException::errorOnSort(); |
35 | 35 | } |
36 | 36 |
@@ -208,7 +208,7 @@ |
||
208 | 208 | $sorter = new Asc($this->collator, Collator::SORT_STRING); |
209 | 209 | } |
210 | 210 | |
211 | - if (! $this->isAsc) { |
|
211 | + if (!$this->isAsc) { |
|
212 | 212 | $sorter = new Desc($sorter); |
213 | 213 | } |
214 | 214 |