Passed
Pull Request — master (#295)
by Quang
03:53 queued 01:16
created
src/Language/Node/DirectiveDefinitionNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      */
53 53
     public function getLocationsAST(): array
54 54
     {
55
-        return \array_map(function (NameNode $node) {
55
+        return \array_map(function(NameNode $node) {
56 56
             return $node->toAST();
57 57
         }, $this->locations);
58 58
     }
Please login to merge, or discard this patch.
src/Language/Node/InterfacesTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function getInterfacesAST(): array
32 32
     {
33
-        return \array_map(function (NamedTypeNode $node) {
33
+        return \array_map(function(NamedTypeNode $node) {
34 34
             return $node->toAST();
35 35
         }, $this->interfaces);
36 36
     }
Please login to merge, or discard this patch.
src/Language/Node/InputFieldsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function getFieldsAST(): array
32 32
     {
33
-        return \array_map(function (InputValueDefinitionNode $node) {
33
+        return \array_map(function(InputValueDefinitionNode $node) {
34 34
             return $node->toAST();
35 35
         }, $this->fields);
36 36
     }
Please login to merge, or discard this patch.
src/Language/Node/InputArgumentsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function getArgumentsAST(): array
32 32
     {
33
-        return \array_map(function (InputValueDefinitionNode $node) {
33
+        return \array_map(function(InputValueDefinitionNode $node) {
34 34
             return $node->toAST();
35 35
         }, $this->arguments);
36 36
     }
Please login to merge, or discard this patch.
src/Language/Node/ObjectValueNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function getFieldsAST(): array
39 39
     {
40
-        return \array_map(function (ObjectFieldNode $node) {
40
+        return \array_map(function(ObjectFieldNode $node) {
41 41
             return $node->toAST();
42 42
         }, $this->fields);
43 43
     }
Please login to merge, or discard this patch.
src/Language/Node/SchemaDefinitionNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function getOperationTypesAST(): array
43 43
     {
44
-        return \array_map(function (OperationTypeDefinitionNode $node) {
44
+        return \array_map(function(OperationTypeDefinitionNode $node) {
45 45
             return $node->toAST();
46 46
         }, $this->operationTypes);
47 47
     }
Please login to merge, or discard this patch.
src/Language/Node/FieldsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function getFieldsAST(): array
32 32
     {
33
-        return \array_map(function (FieldDefinitionNode $node) {
33
+        return \array_map(function(FieldDefinitionNode $node) {
34 34
             return $node->toAST();
35 35
         }, $this->fields);
36 36
     }
Please login to merge, or discard this patch.
src/Language/Node/DirectivesTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function getDirectivesAST(): array
32 32
     {
33
-        return \array_map(function (DirectiveNode $directive) {
33
+        return \array_map(function(DirectiveNode $directive) {
34 34
             return $directive->toAST();
35 35
         }, $this->directives);
36 36
     }
Please login to merge, or discard this patch.
src/Language/Node/SelectionSetNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function getSelectionsAST(): array
39 39
     {
40
-        return \array_map(function (SelectionNodeInterface $node) {
40
+        return \array_map(function(SelectionNodeInterface $node) {
41 41
             return $node->toAST();
42 42
         }, $this->selections);
43 43
     }
Please login to merge, or discard this patch.