@@ -15,7 +15,7 @@ |
||
| 15 | 15 | |
| 16 | 16 | public function __construct(array $adapterConfiguration, VariableParser $variableParser) |
| 17 | 17 | { |
| 18 | - if (! $this->isValidConfiguration($adapterConfiguration)) { |
|
| 18 | + if (!$this->isValidConfiguration($adapterConfiguration)) { |
|
| 19 | 19 | throw InvalidCollectionAdapter::create(); |
| 20 | 20 | } |
| 21 | 21 | |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | public function __construct(array $adapterConfiguration, VariableParser $variableParser) |
| 18 | 18 | { |
| 19 | - if (! $this->isValidConfiguration($adapterConfiguration)) { |
|
| 19 | + if (!$this->isValidConfiguration($adapterConfiguration)) { |
|
| 20 | 20 | throw InvalidPaginationAdapter::create(); |
| 21 | 21 | } |
| 22 | 22 | |
@@ -128,6 +128,6 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | protected function createPaginatedUrl(string $pageId, int $index): string |
| 130 | 130 | { |
| 131 | - return str_replace('{' .$this->parameter. '}', $index, $pageId); |
|
| 131 | + return str_replace('{' . $this->parameter . '}', $index, $pageId); |
|
| 132 | 132 | } |
| 133 | 133 | } |