@@ -37,7 +37,7 @@ |
||
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 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function getTypesAST(): 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->types); |
36 | 36 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function getValuesAST(): array |
32 | 32 | { |
33 | - return \array_map(function (EnumValueDefinitionNode $node) { |
|
33 | + return \array_map(function(EnumValueDefinitionNode $node) { |
|
34 | 34 | return $node->toAST(); |
35 | 35 | }, $this->values); |
36 | 36 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function getValuesAST(): array |
39 | 39 | { |
40 | - return \array_map(function (ValueNodeInterface $node) { |
|
40 | + return \array_map(function(ValueNodeInterface $node) { |
|
41 | 41 | return $node->toAST(); |
42 | 42 | }, $this->values); |
43 | 43 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function __toString(): string |
71 | 71 | { |
72 | - return \json_encode(\array_map(function (ValueAwareInterface $node) { |
|
72 | + return \json_encode(\array_map(function(ValueAwareInterface $node) { |
|
73 | 73 | return $node->getValue(); |
74 | 74 | }, $this->getValues())); |
75 | 75 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function getArgumentsAST(): array |
32 | 32 | { |
33 | - return \array_map(function (ArgumentNode $node) { |
|
33 | + return \array_map(function(ArgumentNode $node) { |
|
34 | 34 | return $node->toAST(); |
35 | 35 | }, $this->getArguments()); |
36 | 36 | } |
@@ -66,7 +66,7 @@ |
||
66 | 66 | $array = []; |
67 | 67 | |
68 | 68 | if (!empty($this->errors)) { |
69 | - $array['errors'] = \array_map(function (GraphQLException $error) { |
|
69 | + $array['errors'] = \array_map(function(GraphQLException $error) { |
|
70 | 70 | return $error->toArray(); |
71 | 71 | }, $this->errors); |
72 | 72 | } |
@@ -77,7 +77,7 @@ |
||
77 | 77 | ?TypeInterface $initialType = null |
78 | 78 | ) { |
79 | 79 | $this->schema = $schema; |
80 | - $this->getFieldDefinitionFunction = $getFieldDefinitionFunction ?? function ( |
|
80 | + $this->getFieldDefinitionFunction = $getFieldDefinitionFunction ?? function( |
|
81 | 81 | Schema $schema, |
82 | 82 | TypeInterface $parentType, |
83 | 83 | FieldNode $fieldNode |
@@ -127,7 +127,7 @@ |
||
127 | 127 | // If both types are abstract, then determine if there is any intersection |
128 | 128 | // between possible concrete types of each. |
129 | 129 | return arraySome($schema->getPossibleTypes($typeA), |
130 | - function (NamedTypeInterface $type) use ($schema, $typeB) { |
|
130 | + function(NamedTypeInterface $type) use ($schema, $typeB) { |
|
131 | 131 | return $schema->isPossibleType($typeB, $type); |
132 | 132 | }); |
133 | 133 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | if (null !== $fieldDefinition && null !== $parentType) { |
56 | 56 | /** @noinspection PhpUnhandledExceptionInspection */ |
57 | - $options = \array_map(function (Argument $argument) { |
|
57 | + $options = \array_map(function(Argument $argument) { |
|
58 | 58 | return $argument->getName(); |
59 | 59 | }, $fieldDefinition->getArguments()); |
60 | 60 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | if (null !== $directive) { |
88 | 88 | /** @noinspection PhpUnhandledExceptionInspection */ |
89 | - $options = \array_map(function (Argument $argument) { |
|
89 | + $options = \array_map(function(Argument $argument) { |
|
90 | 90 | return $argument->getName(); |
91 | 91 | }, $directive->getArguments()); |
92 | 92 |