@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | /** @var mixed $value */ |
335 | 335 | /** @psalm-suppress MixedAssignment */ |
336 | 336 | foreach ($meta as $key => $value) { |
337 | - $key = (string)$key; |
|
337 | + $key = (string) $key; |
|
338 | 338 | if (!in_array($key, self::ALLOWED_META, true)) { |
339 | 339 | throw new InvalidConfigException( |
340 | 340 | sprintf( |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | } |
435 | 435 | /** @psalm-var iterable<string, iterable<string>> $tags */ |
436 | 436 | |
437 | - $this->tags = $tags instanceof Traversable ? iterator_to_array($tags, true) : $tags ; |
|
437 | + $this->tags = $tags instanceof Traversable ? iterator_to_array($tags, true) : $tags; |
|
438 | 438 | } |
439 | 439 | |
440 | 440 | /** |