Passed
Push — iterable ( 66942d...ecefc6 )
by Dmitriy
03:32 queued 01:02
created
src/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.