Passed
Pull Request — master (#145)
by Christoffer
02:30
created
src/Language/ASTBuilder/ArgumentsASTBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         };
Please login to merge, or discard this patch.
src/Language/ASTBuilder/ValueLiteralASTBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.