Passed
Push — master ( b83a20...221be0 )
by Robson
02:53 queued 10s
created
src/Paginator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         $this->rows = $this->toPositive($rows);
74 74
         $this->limit = $this->toPositive($limit);
75 75
         $this->range = $this->toPositive($range);
76
-        $this->pages = (int)ceil($this->rows / $this->limit);
76
+        $this->pages = (int) ceil($this->rows / $this->limit);
77 77
         $this->page = ($page <= $this->pages ? $this->toPositive($page) : $this->pages);
78 78
 
79 79
         $this->offset = (($this->page * $this->limit) - $this->limit >= 0 ? ($this->page * $this->limit) - $this->limit : 0);
Please login to merge, or discard this patch.