| @@ -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) { | 
| @@ -207,7 +207,7 @@ | ||
| 207 | 207 | $sorter = new Asc($this->collator, Collator::SORT_STRING); | 
| 208 | 208 | } | 
| 209 | 209 | |
| 210 | -        if (! $this->isAsc) { | |
| 210 | +        if (!$this->isAsc) { | |
| 211 | 211 | return new Desc($sorter); | 
| 212 | 212 | } | 
| 213 | 213 | |