@@ -31,7 +31,7 @@ |
||
31 | 31 | */ |
32 | 32 | public function sort(array $values): array |
33 | 33 | { |
34 | - if (! $this->collator->asort($values, $this->sortType)) { |
|
34 | + if (!$this->collator->asort($values, $this->sortType)) { |
|
35 | 35 | throw IntlSortException::errorOnSort(intl_get_error_message()); |
36 | 36 | } |
37 | 37 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | $collator = $this->collator; |
30 | 30 | uksort( |
31 | 31 | $values, |
32 | - static function ($first, $second) use ($collator): int { |
|
32 | + static function($first, $second) use ($collator): int { |
|
33 | 33 | /** @var int|false $result */ |
34 | 34 | $result = $collator->compare((string) $first, (string) $second); |
35 | 35 | if (false === $result) { |
@@ -233,7 +233,7 @@ |
||
233 | 233 | $sorter = $this->sorterFactory->createSorter($this->collator); |
234 | 234 | } |
235 | 235 | |
236 | - if (! $this->isAsc) { |
|
236 | + if (!$this->isAsc) { |
|
237 | 237 | return new Desc($sorter); |
238 | 238 | } |
239 | 239 |