Passed
Push — master ( 9c7c6d...8735a4 )
by Petr
03:02
created
php-src/eloquent/Connector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     public function fetchData(): void
69 69
     {
70 70
         foreach (array_reverse($this->sorters) as list($colName, $direction)) {
71
-            $dir = IOrder::ORDER_ASC == $direction ? 'asc' : 'desc' ;
71
+            $dir = IOrder::ORDER_ASC == $direction ? 'asc' : 'desc';
72 72
             $this->queryBuilder->orderBy($colName, $dir);
73 73
         }
74 74
         if (!is_null($this->offset)) {
Please login to merge, or discard this patch.