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