@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | */ |
| 233 | 233 | public function seek(int $position): void |
| 234 | 234 | { |
| 235 | - if (! isset($this->queue[$position])) { |
|
| 235 | + if (!isset($this->queue[$position])) { |
|
| 236 | 236 | throw new OutOfBoundsException(sprintf('Invalid seek position (%s).', $position)); |
| 237 | 237 | } |
| 238 | 238 | |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | */ |
| 253 | 253 | public function current(): MiddlewareInterface |
| 254 | 254 | { |
| 255 | - if (! isset($this->queue[$this->position])) { |
|
| 255 | + if (!isset($this->queue[$this->position])) { |
|
| 256 | 256 | throw new OutOfBoundsException(sprintf('Position actuelle non valide (%s).', $this->position)); |
| 257 | 257 | } |
| 258 | 258 | |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $this->path = $path; |
| 36 | 36 | |
| 37 | 37 | foreach ($this->arguments as $argument => $value) { |
| 38 | - if (! is_string($argument)) { |
|
| 38 | + if (!is_string($argument)) { |
|
| 39 | 39 | continue; |
| 40 | 40 | } |
| 41 | 41 | |