Passed
Push — master ( 390227...6f781d )
by Claudio
02:24
created
src/Sorter/Asc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Sorter/Key.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.