Completed
Push — master ( d1bf46...cc2dbc )
by Timo
08:58
created
src/Models/HeaderFormatters/SortableHeader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
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.