Test Setup Failed
Push — master ( 7372a0...5c877a )
by Kirill
02:55
created
src/Ast/Generic/InputFieldDefinitionCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
      */
24 24
     public function __construct(array $items)
25 25
     {
26
-        parent::__construct(fn ($item) => $item instanceof InputFieldDefinitionNode, $items);
26
+        parent::__construct(fn($item) => $item instanceof InputFieldDefinitionNode, $items);
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Ast/Generic/ArgumentDefinitionCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct(array $items)
26 26
     {
27
-        parent::__construct(fn ($item) => $item instanceof ArgumentDefinitionNode, $items);
27
+        parent::__construct(fn($item) => $item instanceof ArgumentDefinitionNode, $items);
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/Ast/Generic/ValueCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $items)
29 29
     {
30
-        parent::__construct(fn ($item) => $item instanceof ValueNode, $items);
30
+        parent::__construct(fn($item) => $item instanceof ValueNode, $items);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Ast/Generic/ArgumentCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $items)
29 29
     {
30
-        parent::__construct(fn ($item) => $item instanceof ArgumentNode, $items);
30
+        parent::__construct(fn($item) => $item instanceof ArgumentNode, $items);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Ast/Generic/EnumValueDefinitionCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $items)
29 29
     {
30
-        parent::__construct(fn ($item) => $item instanceof EnumValueDefinitionNode, $items);
30
+        parent::__construct(fn($item) => $item instanceof EnumValueDefinitionNode, $items);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Ast/Generic/FieldDefinitionCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $items)
29 29
     {
30
-        parent::__construct(fn ($item) => $item instanceof FieldDefinitionNode, $items);
30
+        parent::__construct(fn($item) => $item instanceof FieldDefinitionNode, $items);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Ast/Generic/TypeDefinitionCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $items)
29 29
     {
30
-        parent::__construct(fn ($item) => $item instanceof NamedTypeNode, $items);
30
+        parent::__construct(fn($item) => $item instanceof NamedTypeNode, $items);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Ast/Generic/NamesCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $items)
29 29
     {
30
-        parent::__construct(fn ($item) => $item instanceof IdentifierNode, $items);
30
+        parent::__construct(fn($item) => $item instanceof IdentifierNode, $items);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Ast/Generic/DirectiveCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $items)
29 29
     {
30
-        parent::__construct(fn ($item) => $item instanceof DirectiveNode, $items);
30
+        parent::__construct(fn($item) => $item instanceof DirectiveNode, $items);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.