@@ -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 | { |
@@ -44,35 +44,35 @@ |
||
44 | 44 | |
45 | 45 | private function _registerDataTable(): void |
46 | 46 | { |
47 | - $this->app->bind('datatable', function () { |
|
47 | + $this->app->bind('datatable', function() { |
|
48 | 48 | return new DataTable(); |
49 | 49 | }); |
50 | 50 | } |
51 | 51 | |
52 | 52 | private function _registerSessionHelper(): void |
53 | 53 | { |
54 | - $this->app->singleton('session_helper', function () { |
|
54 | + $this->app->singleton('session_helper', function() { |
|
55 | 55 | return new SessionHelper(); |
56 | 56 | }); |
57 | 57 | } |
58 | 58 | |
59 | 59 | private function _registerUrlHelper(): void |
60 | 60 | { |
61 | - $this->app->singleton('url_helper', function () { |
|
61 | + $this->app->singleton('url_helper', function() { |
|
62 | 62 | return new UrlHelper(); |
63 | 63 | }); |
64 | 64 | } |
65 | 65 | |
66 | 66 | private function _registerTableRenderer(): void |
67 | 67 | { |
68 | - $this->app->singleton('table_renderer', function () { |
|
68 | + $this->app->singleton('table_renderer', function() { |
|
69 | 69 | return new TableRenderer(); |
70 | 70 | }); |
71 | 71 | } |
72 | 72 | |
73 | 73 | private function _setDataTableAlias(): void |
74 | 74 | { |
75 | - $this->app->booting(function () { |
|
75 | + $this->app->booting(function() { |
|
76 | 76 | AliasLoader::getInstance()->alias('DataTable', DataTableFacade::class); |
77 | 77 | }); |
78 | 78 | } |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * @param string|null $name |
124 | 124 | * @return $this|DataTable |
125 | 125 | */ |
126 | - public function addComponent(DataComponent $component, ?string $name = null): DataTable |
|
126 | + public function addComponent(DataComponent $component, ? string $name = null) : DataTable |
|
127 | 127 | { |
128 | 128 | $component->init($this->_queryBuilder, $this->_columns); |
129 | 129 | $componentName = \str_replace(' ', '', Str::lower($name ?? \class_basename($component))); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | /** @var Column $column */ |
169 | 169 | $column = \array_first( |
170 | 170 | $this->_columns, |
171 | - function ($index, $column) use ($columnName) { |
|
171 | + function($index, $column) use ($columnName) { |
|
172 | 172 | /** @var Column $column */ |
173 | 173 | return $column->getName() === $columnName; |
174 | 174 | } |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | private function _fetchHeaders(): array |
300 | 300 | { |
301 | 301 | return \array_map( |
302 | - function ($column) { |
|
302 | + function($column) { |
|
303 | 303 | /** @var Column $column */ |
304 | 304 | return new Header($column->getKey()); |
305 | 305 | }, |