@@ -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 | |