Completed
Push — master ( 1f3eb8...3c3d4d )
by
unknown
13s
created
src/Extension/ArrayExtension.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@
 block discarded – undo
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
         ]);
Please login to merge, or discard this patch.