@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | * @return string |
| 167 | 167 | * @throws \RuntimeException |
| 168 | 168 | */ |
| 169 | - private function _buildSortQuery(string $columnName, string &$oldDirection) : string |
|
| 169 | + private function _buildSortQuery(string $columnName, string & $oldDirection) : string |
|
| 170 | 170 | { |
| 171 | 171 | $parameters = UrlHelper::queryParameters(); |
| 172 | 172 | if (!isset($parameters['sort'])) |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | * @param string $queryString |
| 190 | 190 | * @return null|string |
| 191 | 191 | */ |
| 192 | - private function _getDirectionFromQuery(string $columnName, string $queryString) : ?string |
|
| 192 | + private function _getDirectionFromQuery(string $columnName, string $queryString) : ? string |
|
| 193 | 193 | { |
| 194 | 194 | $column = $columnName . self::SORTING_SEPARATOR; |
| 195 | 195 | $columnPos = \mb_strpos($queryString, $column); |
@@ -179,7 +179,7 @@ discard block |
||
| 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 |
||
| 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 | { |