@@ -129,7 +129,7 @@ |
||
129 | 129 | { |
130 | 130 | return arraySome( |
131 | 131 | specifiedDirectives(), |
132 | - function (DirectiveInterface $specifiedDirective) use ($directive) { |
|
132 | + function(DirectiveInterface $specifiedDirective) use ($directive) { |
|
133 | 133 | return $specifiedDirective->getName() === $directive->getName(); |
134 | 134 | } |
135 | 135 | ); |
@@ -53,7 +53,7 @@ |
||
53 | 53 | if ($code === 92) { |
54 | 54 | // \ |
55 | 55 | $value .= sliceString($body, $chunkStart, $pos + 1); |
56 | - $code = charCodeAt($body, $pos); |
|
56 | + $code = charCodeAt($body, $pos); |
|
57 | 57 | |
58 | 58 | switch ($code) { |
59 | 59 | case 34: |
@@ -101,7 +101,7 @@ |
||
101 | 101 | $coercedObject = []; |
102 | 102 | |
103 | 103 | /** @var ObjectFieldNode[] $fieldNodes */ |
104 | - $fieldNodes = keyMap($node->getFields(), function (FieldNode $value) { |
|
104 | + $fieldNodes = keyMap($node->getFields(), function(FieldNode $value) { |
|
105 | 105 | return $value->getNameValue(); |
106 | 106 | }); |
107 | 107 |
@@ -59,7 +59,7 @@ |
||
59 | 59 | */ |
60 | 60 | public function getMultiple($keys, $default = null) |
61 | 61 | { |
62 | - return array_filter($this->cache, function ($key) use ($keys) { |
|
62 | + return array_filter($this->cache, function($key) use ($keys) { |
|
63 | 63 | return \in_array($key, $keys, true); |
64 | 64 | }, ARRAY_FILTER_USE_KEY); |
65 | 65 | } |
@@ -72,7 +72,7 @@ |
||
72 | 72 | { |
73 | 73 | return arraySome( |
74 | 74 | specifiedScalarTypes(), |
75 | - function (ScalarType $specifiedScalarType) use ($type) { |
|
75 | + function(ScalarType $specifiedScalarType) use ($type) { |
|
76 | 76 | /** @noinspection PhpUndefinedMethodInspection */ |
77 | 77 | return $type->getName() === $specifiedScalarType->getName(); |
78 | 78 | } |
@@ -78,7 +78,7 @@ |
||
78 | 78 | $this->schema = $schema; |
79 | 79 | $this->getFieldDefinitionFunction = null !== $getFieldDefinitionFunction |
80 | 80 | ? $getFieldDefinitionFunction |
81 | - : function (SchemaInterface $schema, TypeInterface $parentType, FieldNode $fieldNode) { |
|
81 | + : function(SchemaInterface $schema, TypeInterface $parentType, FieldNode $fieldNode) { |
|
82 | 82 | return getFieldDefinition($schema, $parentType, $fieldNode); |
83 | 83 | }; |
84 | 84 |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | 'name' => '__schema', |
84 | 84 | 'type' => GraphQLNonNull(__Schema()), |
85 | 85 | 'description' => 'Access the current type schema of this server.', |
86 | - 'resolve' => function ($source, $args, $context, $info): SchemaInterface { |
|
86 | + 'resolve' => function($source, $args, $context, $info): SchemaInterface { |
|
87 | 87 | [$schema] = $info; |
88 | 88 | return $schema; |
89 | 89 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | 'args' => [ |
104 | 104 | 'name' => ['type' => GraphQLNonNull(GraphQLString())], |
105 | 105 | ], |
106 | - 'resolve' => function ($source, $args, $context, $info): TypeInterface { |
|
106 | + 'resolve' => function($source, $args, $context, $info): TypeInterface { |
|
107 | 107 | /** @var SchemaInterface $schema */ |
108 | 108 | [$name] = $args; |
109 | 109 | [$schema] = $info; |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | 'name' => '__typename', |
123 | 123 | 'type' => GraphQLNonNull(GraphQLString()), |
124 | 124 | 'description' => 'The name of the current Object type at runtime.', |
125 | - 'resolve' => function ($source, $args, $context, $info): string { |
|
125 | + 'resolve' => function($source, $args, $context, $info): string { |
|
126 | 126 | /** @var NamedTypeInterface $parentType */ |
127 | 127 | [$parentType] = $info; |
128 | 128 | return $parentType->getName(); |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | { |
156 | 156 | return arraySome( |
157 | 157 | introspectionTypes(), |
158 | - function (TypeInterface $introspectionType) use ($type) { |
|
158 | + function(TypeInterface $introspectionType) use ($type) { |
|
159 | 159 | /** @noinspection PhpUndefinedMethodInspection */ |
160 | 160 | return $type->getName() === $introspectionType->getName(); |
161 | 161 | } |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | * @return mixed |
435 | 435 | * @throws SyntaxErrorException |
436 | 436 | */ |
437 | - $parseType = function (LexerInterface $lexer) { |
|
437 | + $parseType = function(LexerInterface $lexer) { |
|
438 | 438 | $this->expect($lexer, TokenKindEnum::COLON); |
439 | 439 | return $this->parseTypeReference($lexer); |
440 | 440 | }; |
@@ -564,7 +564,7 @@ discard block |
||
564 | 564 | * @return mixed |
565 | 565 | * @throws SyntaxErrorException |
566 | 566 | */ |
567 | - $parseValue = function (LexerInterface $lexer) { |
|
567 | + $parseValue = function(LexerInterface $lexer) { |
|
568 | 568 | $this->expect($lexer, TokenKindEnum::COLON); |
569 | 569 | return $this->parseValueLiteral($lexer, false); |
570 | 570 | }; |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | * @return mixed |
592 | 592 | * @throws SyntaxErrorException |
593 | 593 | */ |
594 | - $parseValue = function (LexerInterface $lexer) { |
|
594 | + $parseValue = function(LexerInterface $lexer) { |
|
595 | 595 | $this->expect($lexer, TokenKindEnum::COLON); |
596 | 596 | return $this->parseConstValue($lexer); |
597 | 597 | }; |
@@ -652,7 +652,7 @@ discard block |
||
652 | 652 | |
653 | 653 | $this->expectKeyword($lexer, KeywordEnum::FRAGMENT); |
654 | 654 | |
655 | - $parseTypeCondition = function (LexerInterface $lexer) { |
|
655 | + $parseTypeCondition = function(LexerInterface $lexer) { |
|
656 | 656 | $this->expectKeyword($lexer, 'on'); |
657 | 657 | return $this->parseNamedType($lexer); |
658 | 658 | }; |
@@ -848,7 +848,7 @@ discard block |
||
848 | 848 | { |
849 | 849 | $start = $lexer->getToken(); |
850 | 850 | |
851 | - $parseValue = function (LexerInterface $lexer, bool $isConst) { |
|
851 | + $parseValue = function(LexerInterface $lexer, bool $isConst) { |
|
852 | 852 | $this->expect($lexer, TokenKindEnum::COLON); |
853 | 853 | return $this->parseValueLiteral($lexer, $isConst); |
854 | 854 | }; |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | (string)$parentType, |
36 | 36 | suggestionList( |
37 | 37 | $node->getNameValue(), |
38 | - array_map(function (Argument $argument) { |
|
38 | + array_map(function(Argument $argument) { |
|
39 | 39 | return $argument->getName(); |
40 | 40 | }, $fieldDefinition->getArguments()) |
41 | 41 | ) |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | (string)$directive, |
56 | 56 | suggestionList( |
57 | 57 | (string)$node, |
58 | - array_map(function (Argument $argument) { |
|
58 | + array_map(function(Argument $argument) { |
|
59 | 59 | return $argument->getName(); |
60 | 60 | }, $directive->getArguments()) |
61 | 61 | ) |