Completed
Push — master ( a1d335...58f4fb )
by Timo
05:05
created
src/Models/DataComponents/Paginator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         $end = $this->_getEndPage();
180 180
 
181 181
         $pageList = '';
182
-        for ($i = $this->_getStartPage(); $i <= $end; $i ++)
182
+        for ($i = $this->_getStartPage(); $i <= $end; $i++)
183 183
         {
184 184
             $pageList .= $this->_renderListItem($i, $this->_buildPageUrl($i));
185 185
         }
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      * @return null|string
232 232
      * @throws \RuntimeException
233 233
      */
234
-    private function _getNextPageUrl() : ?string
234
+    private function _getNextPageUrl() : ? string
235 235
     {
236 236
         if ($this->_currentPage >= $this->pageCount())
237 237
         {
Please login to merge, or discard this patch.