@@ -33,7 +33,7 @@ |
||
| 33 | 33 | |
| 34 | 34 | CollectionAdapter::setFilterId($matchingRoute['id'] ?? null); |
| 35 | 35 | |
| 36 | - $filteredConfiguration = array_filter($parsedConfiguration, function ($key) use ($matchingRoute) { |
|
| 36 | + $filteredConfiguration = array_filter($parsedConfiguration, function($key) use ($matchingRoute) { |
|
| 37 | 37 | return $key === $matchingRoute['_route']; |
| 38 | 38 | }, ARRAY_FILTER_USE_KEY); |
| 39 | 39 | |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | public function __construct(array $adapterConfiguration, VariableParser $variableParser) |
| 20 | 20 | { |
| 21 | - if (! $this->isValidConfiguration($adapterConfiguration)) { |
|
| 21 | + if (!$this->isValidConfiguration($adapterConfiguration)) { |
|
| 22 | 22 | throw InvalidCollectionAdapter::create(); |
| 23 | 23 | } |
| 24 | 24 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | |
| 140 | 140 | $prev = prev($this->entries); |
| 141 | 141 | |
| 142 | - if (! $prev) { |
|
| 142 | + if (!$prev) { |
|
| 143 | 143 | reset($this->entries); |
| 144 | 144 | } else { |
| 145 | 145 | $browse['prev'] = $prev; |