@@ -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 | } |
@@ -29,14 +29,14 @@ |
||
29 | 29 | */ |
30 | 30 | public function register() |
31 | 31 | { |
32 | - $this->container->add(NodeBuilderInterface::class, function () { |
|
32 | + $this->container->add(NodeBuilderInterface::class, function() { |
|
33 | 33 | return new NodeBuilder(SupportedBuilders::get()); |
34 | 34 | }); |
35 | 35 | |
36 | 36 | $this->container->add(ParserInterface::class, Parser::class, true/* $shared */) |
37 | 37 | ->withArgument(NodeBuilderInterface::class); |
38 | 38 | |
39 | - $this->container->add(LexerInterface::class, function () { |
|
39 | + $this->container->add(LexerInterface::class, function() { |
|
40 | 40 | return new Lexer(SupportedReaders::get()); |
41 | 41 | }); |
42 | 42 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function register() |
29 | 29 | { |
30 | - $this->container->add(GraphQL::INCLUDE_DIRECTIVE, function () { |
|
30 | + $this->container->add(GraphQL::INCLUDE_DIRECTIVE, function() { |
|
31 | 31 | return GraphQLDirective([ |
32 | 32 | 'name' => 'include', |
33 | 33 | 'description' => |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | ]); |
48 | 48 | }, true/* $shared */); |
49 | 49 | |
50 | - $this->container->add(GraphQL::SKIP_DIRECTIVE, function () { |
|
50 | + $this->container->add(GraphQL::SKIP_DIRECTIVE, function() { |
|
51 | 51 | return GraphQLDirective([ |
52 | 52 | 'name' => 'skip', |
53 | 53 | 'description' => |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | ]); |
68 | 68 | }, true/* $shared */); |
69 | 69 | |
70 | - $this->container->add(GraphQL::DEPRECATED_DIRECTIVE, function () { |
|
70 | + $this->container->add(GraphQL::DEPRECATED_DIRECTIVE, function() { |
|
71 | 71 | return GraphQLDirective([ |
72 | 72 | 'name' => 'deprecated', |
73 | 73 | 'description' => 'Marks an element of a GraphQL schema as no longer supported.', |
@@ -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 | } |