@@ -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 |