Passed
Push — main ( 87c4f6...533dd7 )
by Gabor
07:40
created
src/WorstPractice/Component/Aws/S3/Adapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
         $direction = $sortBy[0] === '^' ? 'asc' : 'desc';
145 145
         $sortByKey = substr($sortBy, 1);
146 146
 
147
-        usort($fileList, static function ($a, $b) use ($direction, $sortByKey) {
147
+        usort($fileList, static function($a, $b) use ($direction, $sortByKey) {
148 148
             $cmp = strcmp($a[$sortByKey], $b[$sortByKey]);
149 149
             return $direction === 'asc' ? $cmp : -$cmp;
150 150
         });
Please login to merge, or discard this patch.