@@ -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); |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | $this->expectKeyword($lexer, KeywordEnum::FRAGMENT); |
28 | 28 | |
29 | - $parseTypeCondition = function (LexerInterface $lexer) { |
|
29 | + $parseTypeCondition = function(LexerInterface $lexer) { |
|
30 | 30 | $this->expectKeyword($lexer, 'on'); |
31 | 31 | return $this->buildAST(ASTKindEnum::NAMED_TYPE, $lexer); |
32 | 32 | }; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | */ |
21 | 21 | public function build(LexerInterface $lexer, array $params): ?array |
22 | 22 | { |
23 | - $parseFunction = function (LexerInterface $lexer): array { |
|
23 | + $parseFunction = function(LexerInterface $lexer): array { |
|
24 | 24 | return $this->buildAST(ASTKindEnum::INPUT_VALUE_DEFINITION, $lexer); |
25 | 25 | }; |
26 | 26 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | * @return mixed |
42 | 42 | * @throws SyntaxErrorException |
43 | 43 | */ |
44 | - $parseType = function (LexerInterface $lexer) { |
|
44 | + $parseType = function(LexerInterface $lexer) { |
|
45 | 45 | $this->expect($lexer, TokenKindEnum::COLON); |
46 | 46 | return $this->buildAST(ASTKindEnum::TYPE_REFERENCE, $lexer); |
47 | 47 | }; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | */ |
21 | 21 | public function build(LexerInterface $lexer, array $params): ?array |
22 | 22 | { |
23 | - $parseFunction = function (LexerInterface $lexer): array { |
|
23 | + $parseFunction = function(LexerInterface $lexer): array { |
|
24 | 24 | return $this->buildAST(ASTKindEnum::INPUT_VALUE_DEFINITION, $lexer); |
25 | 25 | }; |
26 | 26 |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @return mixed |
53 | 53 | * @throws SyntaxErrorException |
54 | 54 | */ |
55 | - $parseValue = function (LexerInterface $lexer) { |
|
55 | + $parseValue = function(LexerInterface $lexer) { |
|
56 | 56 | $this->expect($lexer, TokenKindEnum::COLON); |
57 | 57 | return $this->buildAST(ASTKindEnum::VALUE_LITERAL, $lexer); |
58 | 58 | }; |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @return mixed |
80 | 80 | * @throws SyntaxErrorException |
81 | 81 | */ |
82 | - $parseValue = function (LexerInterface $lexer) { |
|
82 | + $parseValue = function(LexerInterface $lexer) { |
|
83 | 83 | $this->expect($lexer, TokenKindEnum::COLON); |
84 | 84 | return $this->buildAST(ASTKindEnum::VALUE_LITERAL, $lexer); |
85 | 85 | }; |
@@ -176,7 +176,7 @@ |
||
176 | 176 | { |
177 | 177 | $start = $lexer->getToken(); |
178 | 178 | |
179 | - $parseValue = function (LexerInterface $lexer, bool $isConst) { |
|
179 | + $parseValue = function(LexerInterface $lexer, bool $isConst) { |
|
180 | 180 | $this->expect($lexer, TokenKindEnum::COLON); |
181 | 181 | |
182 | 182 | return $this->parseValueLiteral($lexer, $isConst); |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | // Assert each interface field arg is implemented. |
317 | 317 | foreach ($interfaceField->getArguments() as $interfaceArgument) { |
318 | 318 | $argumentName = $interfaceArgument->getName(); |
319 | - $objectArgument = find($objectField->getArguments(), function (Argument $argument) use ($argumentName) { |
|
319 | + $objectArgument = find($objectField->getArguments(), function(Argument $argument) use ($argumentName) { |
|
320 | 320 | return $argument->getName() === $argumentName; |
321 | 321 | }); |
322 | 322 | |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | $argumentName = $objectArgument->getName(); |
376 | 376 | $interfaceArgument = find( |
377 | 377 | $interfaceField->getArguments(), |
378 | - function (Argument $argument) use ($argumentName) { |
|
378 | + function(Argument $argument) use ($argumentName) { |
|
379 | 379 | return $argument->getName() === $argumentName; |
380 | 380 | } |
381 | 381 | ); |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | return null; |
715 | 715 | } |
716 | 716 | |
717 | - return \array_filter($node->getTypes(), function (NamedTypeNode $type) use ($memberTypeName) { |
|
717 | + return \array_filter($node->getTypes(), function(NamedTypeNode $type) use ($memberTypeName) { |
|
718 | 718 | return $type->getNameValue() === $memberTypeName; |
719 | 719 | }); |
720 | 720 | } |
@@ -733,7 +733,7 @@ discard block |
||
733 | 733 | return null; |
734 | 734 | } |
735 | 735 | |
736 | - return \array_filter($node->getValues(), function (NameAwareInterface $type) use ($valueName) { |
|
736 | + return \array_filter($node->getValues(), function(NameAwareInterface $type) use ($valueName) { |
|
737 | 737 | return $type->getNameValue() === $valueName; |
738 | 738 | }); |
739 | 739 | } |