@@ -49,7 +49,7 @@ |
||
49 | 49 | /** @var Directive $directiveDefinition */ |
50 | 50 | $directiveDefinition = find( |
51 | 51 | $this->context->getSchema()->getDirectives(), |
52 | - function (Directive $definition) use ($node) { |
|
52 | + function(Directive $definition) use ($node) { |
|
53 | 53 | return $definition->getName() === $node->getNameValue(); |
54 | 54 | } |
55 | 55 | ); |
@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | protected function enterDocument(DocumentNode $node): ?NodeInterface |
28 | 28 | { |
29 | - $this->operationCount = \count(\array_filter($node->getDefinitions(), function ($definition) { |
|
29 | + $this->operationCount = \count(\array_filter($node->getDefinitions(), function($definition) { |
|
30 | 30 | return $definition instanceof OperationDefinitionNode; |
31 | 31 | })); |
32 | 32 |
@@ -101,7 +101,7 @@ |
||
101 | 101 | |
102 | 102 | $this->context->reportError( |
103 | 103 | new ValidationException( |
104 | - fragmentCycleMessage($spreadName, \array_map(function (FragmentSpreadNode $spread) { |
|
104 | + fragmentCycleMessage($spreadName, \array_map(function(FragmentSpreadNode $spread) { |
|
105 | 105 | return $spread->getNameValue(); |
106 | 106 | }, $cyclePath)), |
107 | 107 | \array_merge($cyclePath, [$spreadNode]) |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function getLocationsAsArray(): ?array |
154 | 154 | { |
155 | - return !empty($this->locations) ? array_map(function (SourceLocation $location) { |
|
155 | + return !empty($this->locations) ? array_map(function(SourceLocation $location) { |
|
156 | 156 | return $location->toArray(); |
157 | 157 | }, $this->locations) : null; |
158 | 158 | } |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | ? (!empty($nodes) ? $nodes : []) |
192 | 192 | : (null !== $nodes ? [$nodes] : []); |
193 | 193 | |
194 | - $this->nodes = \array_filter($nodes, function ($node) { |
|
194 | + $this->nodes = \array_filter($nodes, function($node) { |
|
195 | 195 | return null !== $node; |
196 | 196 | }); |
197 | 197 | |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | protected function resolvePositions(?array $positions) |
223 | 223 | { |
224 | 224 | if (null === $positions && !empty($this->nodes)) { |
225 | - $positions = array_reduce($this->nodes, function (array $list, ?NodeInterface $node) { |
|
225 | + $positions = array_reduce($this->nodes, function(array $list, ?NodeInterface $node) { |
|
226 | 226 | if (null !== $node) { |
227 | 227 | $location = $node->getLocation(); |
228 | 228 | if (null !== $location) { |
@@ -250,11 +250,11 @@ discard block |
||
250 | 250 | protected function resolveLocations(?array $positions, ?Source $source) |
251 | 251 | { |
252 | 252 | if (null !== $positions && null !== $source) { |
253 | - $locations = array_map(function ($position) use ($source) { |
|
253 | + $locations = array_map(function($position) use ($source) { |
|
254 | 254 | return SourceLocation::fromSource($source, $position); |
255 | 255 | }, $positions); |
256 | 256 | } elseif (!empty($this->nodes)) { |
257 | - $locations = array_reduce($this->nodes, function (array $list, NodeInterface $node) { |
|
257 | + $locations = array_reduce($this->nodes, function(array $list, NodeInterface $node) { |
|
258 | 258 | $location = $node->getLocation(); |
259 | 259 | if (null !== $location) { |
260 | 260 | $list[] = SourceLocation::fromSource($location->getSource(), $location->getStart()); |
@@ -66,7 +66,7 @@ |
||
66 | 66 | $array = ['data' => $this->data]; |
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 | } |
@@ -104,7 +104,7 @@ |
||
104 | 104 | $line < \count($lines) ? leftPad($padLen, $nextLineNum) . ': ' . $lines[$line] : null, |
105 | 105 | ]; |
106 | 106 | |
107 | - return \implode("\n", \array_filter($outputLines, function ($line) { |
|
107 | + return \implode("\n", \array_filter($outputLines, function($line) { |
|
108 | 108 | return null !== $line; |
109 | 109 | })); |
110 | 110 | } |
@@ -124,7 +124,7 @@ |
||
124 | 124 | { |
125 | 125 | return arraySome( |
126 | 126 | introspectionTypes(), |
127 | - function (TypeInterface $introspectionType) use ($type) { |
|
127 | + function(TypeInterface $introspectionType) use ($type) { |
|
128 | 128 | /** @noinspection PhpUndefinedMethodInspection */ |
129 | 129 | return $type->getName() === $introspectionType->getName(); |
130 | 130 | } |
@@ -31,11 +31,11 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function register() |
33 | 33 | { |
34 | - $this->container->add(ASTDirectorInterface::class, function () { |
|
34 | + $this->container->add(ASTDirectorInterface::class, function() { |
|
35 | 35 | return new ASTDirector(SupportedASTBuilders::get()); |
36 | 36 | }); |
37 | 37 | |
38 | - $this->container->add(NodeDirectorInterface::class, function () { |
|
38 | + $this->container->add(NodeDirectorInterface::class, function() { |
|
39 | 39 | return new NodeDirector(SupportedNodeBuilders::get()); |
40 | 40 | }); |
41 | 41 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | ->withArgument(ASTDirectorInterface::class) |
44 | 44 | ->withArgument(NodeDirectorInterface::class); |
45 | 45 | |
46 | - $this->container->add(LexerInterface::class, function () { |
|
46 | + $this->container->add(LexerInterface::class, function() { |
|
47 | 47 | return new Lexer(SupportedReaders::get()); |
48 | 48 | }); |
49 | 49 |
@@ -30,7 +30,7 @@ |
||
30 | 30 | $name = $this->buildAST(ASTKindEnum::NAME, $lexer); |
31 | 31 | $interfaces = $this->buildAST(ASTKindEnum::IMPLEMENTS_INTERFACES, $lexer); |
32 | 32 | $directives = $this->buildAST(ASTKindEnum::DIRECTIVES, $lexer); |
33 | - $fields = $this->buildAST(ASTKindEnum::FIELDS_DEFINITION, $lexer);; |
|
33 | + $fields = $this->buildAST(ASTKindEnum::FIELDS_DEFINITION, $lexer); ; |
|
34 | 34 | |
35 | 35 | if (count($interfaces) === 0 && count($directives) === 0 && count($fields) === 0) { |
36 | 36 | throw $this->unexpected($lexer); |