Passed
Push — master ( 92fe9a...a59633 )
by Claudio
03:02
created
src/Sorter/Key.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Sorter/Asc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/SorterBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.