Passed
Pull Request — master (#145)
by Christoffer
03:59 queued 01:32
created
src/Language/ASTBuilder/VariableDefinitionASTBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
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
         };
Please login to merge, or discard this patch.
src/Language/ASTBuilder/InputFieldsDefinitionASTBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.