Passed
Push — master ( a96d1c...0bb52c )
by Petr
02:51
created
php-src/yii3/Connector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     public function fetchData(): void
68 68
     {
69 69
         foreach (array_reverse($this->sorters) as list($colName, $direction)) {
70
-            $dir = IOrder::ORDER_ASC == $direction ? SORT_ASC : SORT_DESC ;
70
+            $dir = IOrder::ORDER_ASC == $direction ? SORT_ASC : SORT_DESC;
71 71
             $this->yiiFluent->addOrderBy([$colName, $dir]);
72 72
         }
73 73
         if (!is_null($this->offset)) {
Please login to merge, or discard this patch.