@@ -21,7 +21,7 @@ |
||
21 | 21 | return ( |
22 | 22 | $parent instanceof ArrayItem && |
23 | 23 | false === $this->ignoreArray($parent) |
24 | - ) || $parent instanceof ArrayDimFetch; |
|
24 | + ) || $parent instanceof ArrayDimFetch; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | private function ignoreArray(ArrayItem $node): bool |
@@ -22,7 +22,7 @@ |
||
22 | 22 | $parent = ParentConnector::findParent($node); |
23 | 23 | |
24 | 24 | return ( |
25 | - $parent instanceof ArrayItem && |
|
25 | + $parent instanceof ArrayItem && |
|
26 | 26 | false === $this->ignoreArray($parent) |
27 | 27 | ) || $parent instanceof ArrayDimFetch; |
28 | 28 | } |
@@ -31,10 +31,10 @@ |
||
31 | 31 | public static function create(): self |
32 | 32 | { |
33 | 33 | return new self([ |
34 | - Parser::class => static function (self $container): Parser { |
|
34 | + Parser::class => static function(self $container): Parser { |
|
35 | 35 | return (new ParserFactory())->createForHostVersion(); |
36 | 36 | }, |
37 | - FileParser::class => static function (self $container): FileParser { |
|
37 | + FileParser::class => static function(self $container): FileParser { |
|
38 | 38 | return new FileParser($container->getParser()); |
39 | 39 | }, |
40 | 40 | ]); |