Passed
Push — master ( 8afd38...851c8d )
by Petr
02:47
created
php-src/nette/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 ($this->ordering as list($colName, $direction)) {
71
-            $dir = IOrder::ORDER_ASC == $direction ? 'ASC' : 'DESC' ;
71
+            $dir = IOrder::ORDER_ASC == $direction ? 'ASC' : 'DESC';
72 72
             $this->netteTable->order(strval($colName), $dir);
73 73
         }
74 74
         $this->netteTable->limit($this->limit, $this->offset);
Please login to merge, or discard this patch.