@@ -40,7 +40,7 @@ |
||
40 | 40 | */ |
41 | 41 | public function get(): array |
42 | 42 | { |
43 | - return array_map(function ($element) { |
|
43 | + return array_map(function($element) { |
|
44 | 44 | $item = clone $this; |
45 | 45 | $item->data = $element; |
46 | 46 | $item->modifiedFields = $element; |
@@ -137,7 +137,7 @@ |
||
137 | 137 | */ |
138 | 138 | public function lastPageNumber(): int |
139 | 139 | { |
140 | - return (int)ceil($this->total() / $this->perPage); |
|
140 | + return (int) ceil($this->total() / $this->perPage); |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | /** |