Passed
Pull Request — master (#118)
by Christoffer
02:28
created
src/Type/IntrospectionTypesProvider.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public function register()
57 57
     {
58
-        $this->container->add(GraphQL::INTROSPECTION_SCHEMA, function () {
58
+        $this->container->add(GraphQL::INTROSPECTION_SCHEMA, function() {
59 59
             return GraphQLObjectType([
60 60
                 'name'            => GraphQL::INTROSPECTION_SCHEMA,
61 61
                 'isIntrospection' => true,
@@ -63,19 +63,19 @@  discard block
 block discarded – undo
63 63
                     'A GraphQL Schema defines the capabilities of a GraphQL server. It ' .
64 64
                     'exposes all available types and directives on the server, as well as ' .
65 65
                     'the entry points for query, mutation, and subscription operations.',
66
-                'fields'          => function () {
66
+                'fields'          => function() {
67 67
                     return [
68 68
                         'types'            => [
69 69
                             'description' => 'A list of all types supported by this server.',
70 70
                             'type'        => GraphQLNonNull(GraphQLList(GraphQLNonNull(__Type()))),
71
-                            'resolve'     => function (SchemaInterface $schema): array {
71
+                            'resolve'     => function(SchemaInterface $schema): array {
72 72
                                 return array_values($schema->getTypeMap());
73 73
                             },
74 74
                         ],
75 75
                         'queryType'        => [
76 76
                             'description' => 'The type that query operations will be rooted at.',
77 77
                             'type'        => GraphQLNonNull(__Type()),
78
-                            'resolve'     => function (SchemaInterface $schema): ObjectType {
78
+                            'resolve'     => function(SchemaInterface $schema): ObjectType {
79 79
                                 return $schema->getQuery();
80 80
                             },
81 81
                         ],
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
                                 'If this server supports mutation, the type that ' .
85 85
                                 'mutation operations will be rooted at.',
86 86
                             'type'        => __Type(),
87
-                            'resolve'     => function (SchemaInterface $schema): ObjectType {
87
+                            'resolve'     => function(SchemaInterface $schema): ObjectType {
88 88
                                 return $schema->getMutation();
89 89
                             },
90 90
                         ],
@@ -93,14 +93,14 @@  discard block
 block discarded – undo
93 93
                                 'If this server support subscription, the type that ' .
94 94
                                 'subscription operations will be rooted at.',
95 95
                             'type'        => __Type(),
96
-                            'resolve'     => function (SchemaInterface $schema): ObjectType {
96
+                            'resolve'     => function(SchemaInterface $schema): ObjectType {
97 97
                                 return $schema->getSubscription();
98 98
                             },
99 99
                         ],
100 100
                         'directives'       => [
101 101
                             'description' => 'A list of all directives supported by this server.',
102 102
                             'type'        => GraphQLNonNull(GraphQLList(GraphQLNonNull(__Directive()))),
103
-                            'resolve'     => function (SchemaInterface $schema): array {
103
+                            'resolve'     => function(SchemaInterface $schema): array {
104 104
                                 return $schema->getDirectives();
105 105
                             },
106 106
                         ],
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
             ]);
110 110
         }, true/* $shared */);
111 111
 
112
-        $this->container->add(GraphQL::INTROSPECTION_DIRECTIVE, function () {
112
+        $this->container->add(GraphQL::INTROSPECTION_DIRECTIVE, function() {
113 113
             return GraphQLObjectType([
114 114
                 'name'            => GraphQL::INTROSPECTION_DIRECTIVE,
115 115
                 'isIntrospection' => true,
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
                     'execution behavior in ways field arguments will not suffice, such as ' .
121 121
                     'conditionally including or skipping a field. Directives provide this by ' .
122 122
                     'describing additional information to the executor.',
123
-                'fields'          => function () {
123
+                'fields'          => function() {
124 124
                     return [
125 125
                         'name'        => ['type' => GraphQLNonNull(GraphQLString())],
126 126
                         'description' => ['type' => GraphQLString()],
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                         ],
130 130
                         'args'        => [
131 131
                             'type'    => GraphQLNonNull(GraphQLList(GraphQLNonNull(__InputValue()))),
132
-                            'resolve' => function (DirectiveInterface $directive): array {
132
+                            'resolve' => function(DirectiveInterface $directive): array {
133 133
                                 return $directive->getArguments() ?: [];
134 134
                             },
135 135
                         ],
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             ]);
139 139
         }, true/* $shared */);
140 140
 
141
-        $this->container->add(GraphQL::INTROSPECTION_DIRECTIVE_LOCATION, function () {
141
+        $this->container->add(GraphQL::INTROSPECTION_DIRECTIVE_LOCATION, function() {
142 142
             return GraphQLEnumType([
143 143
                 'name'            => GraphQL::INTROSPECTION_DIRECTIVE_LOCATION,
144 144
                 'isIntrospection' => true,
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
             ]);
205 205
         }, true/* $shared */);
206 206
 
207
-        $this->container->add(GraphQL::INTROSPECTION_TYPE, function () {
207
+        $this->container->add(GraphQL::INTROSPECTION_TYPE, function() {
208 208
             return GraphQLObjectType([
209 209
                 'name'            => GraphQL::INTROSPECTION_TYPE,
210 210
                 'isIntrospection' => true,
@@ -217,11 +217,11 @@  discard block
 block discarded – undo
217 217
                     'Object and Interface types provide the fields they describe. Abstract ' .
218 218
                     'types, Union and Interface, provide the Object types possible ' .
219 219
                     'at runtime. List and NonNull types compose other types.',
220
-                'fields'          => function () {
220
+                'fields'          => function() {
221 221
                     return [
222 222
                         'kind'          => [
223 223
                             'type'    => GraphQLNonNull(__TypeKind()),
224
-                            'resolve' => function (TypeInterface $type) {
224
+                            'resolve' => function(TypeInterface $type) {
225 225
                                 if ($type instanceof ScalarType) {
226 226
                                     return TypeKindEnum::SCALAR;
227 227
                                 }
@@ -257,14 +257,14 @@  discard block
 block discarded – undo
257 257
                             'args'    => [
258 258
                                 'includeDeprecated' => ['type' => GraphQLBoolean(), 'defaultValue' => false],
259 259
                             ],
260
-                            'resolve' => function (TypeInterface $type, array $args): ?array {
260
+                            'resolve' => function(TypeInterface $type, array $args): ?array {
261 261
                                 [$includeDeprecated] = $args;
262 262
 
263 263
                                 if ($type instanceof ObjectType || $type instanceof InterfaceType) {
264 264
                                     $fields = array_values($type->getFields());
265 265
 
266 266
                                     if (!$includeDeprecated) {
267
-                                        $fields = array_filter($fields, function (Field $field) {
267
+                                        $fields = array_filter($fields, function(Field $field) {
268 268
                                             return !$field->isDeprecated();
269 269
                                         });
270 270
                                     }
@@ -277,13 +277,13 @@  discard block
 block discarded – undo
277 277
                         ],
278 278
                         'interfaces'    => [
279 279
                             'type'    => GraphQLList(GraphQLNonNull(__Type())),
280
-                            'resolve' => function (TypeInterface $type): ?array {
280
+                            'resolve' => function(TypeInterface $type): ?array {
281 281
                                 return $type instanceof ObjectType ? $type->getInterfaces() : null;
282 282
                             },
283 283
                         ],
284 284
                         'possibleTypes' => [
285 285
                             'type'    => GraphQLList(GraphQLNonNull(__Type())),
286
-                            'resolve' => function (TypeInterface $type, $args, $context, $info): ?array {
286
+                            'resolve' => function(TypeInterface $type, $args, $context, $info): ?array {
287 287
                                 /** @var SchemaInterface $schema */
288 288
                                 [$schema] = $info;
289 289
                                 /** @noinspection PhpParamsInspection */
@@ -295,14 +295,14 @@  discard block
 block discarded – undo
295 295
                             'args'    => [
296 296
                                 'includeDeprecated' => ['type' => GraphQLBoolean(), 'defaultValue' => false],
297 297
                             ],
298
-                            'resolve' => function (TypeInterface $type, array $args): ?array {
298
+                            'resolve' => function(TypeInterface $type, array $args): ?array {
299 299
                                 [$includeDeprecated] = $args;
300 300
 
301 301
                                 if ($type instanceof EnumType) {
302 302
                                     $values = array_values($type->getValues());
303 303
 
304 304
                                     if (!$includeDeprecated) {
305
-                                        $values = array_filter($values, function (Field $field) {
305
+                                        $values = array_filter($values, function(Field $field) {
306 306
                                             return !$field->isDeprecated();
307 307
                                         });
308 308
                                     }
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
                         ],
316 316
                         'inputFields'   => [
317 317
                             'type'    => GraphQLList(GraphQLNonNull(__InputValue())),
318
-                            'resolve' => function (TypeInterface $type): ?array {
318
+                            'resolve' => function(TypeInterface $type): ?array {
319 319
                                 return $type instanceof InputObjectType ? $type->getFields() : null;
320 320
                             },
321 321
                         ],
@@ -325,20 +325,20 @@  discard block
 block discarded – undo
325 325
             ]);
326 326
         }, true/* $shared */);
327 327
 
328
-        $this->container->add(GraphQL::INTROSPECTION_FIELD, function () {
328
+        $this->container->add(GraphQL::INTROSPECTION_FIELD, function() {
329 329
             return GraphQLObjectType([
330 330
                 'name'            => GraphQL::INTROSPECTION_FIELD,
331 331
                 'isIntrospection' => true,
332 332
                 'description'     =>
333 333
                     'Object and Interface types are described by a list of Fields, each of ' .
334 334
                     'which has a name, potentially a list of arguments, and a return type.',
335
-                'fields'          => function () {
335
+                'fields'          => function() {
336 336
                     return [
337 337
                         'name'              => ['type' => GraphQLNonNull(GraphQLString())],
338 338
                         'description'       => ['type' => GraphQLString()],
339 339
                         'args'              => [
340 340
                             'type'    => GraphQLNonNull(GraphQLList(GraphQLNonNull(__InputValue()))),
341
-                            'resolve' => function (DirectiveInterface $directive): array {
341
+                            'resolve' => function(DirectiveInterface $directive): array {
342 342
                                 return $directive->getArguments() ?: [];
343 343
                             },
344 344
                         ],
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
             ]);
351 351
         }, true/* $shared */);
352 352
 
353
-        $this->container->add(GraphQL::INTROSPECTION_INPUT_VALUE, function () {
353
+        $this->container->add(GraphQL::INTROSPECTION_INPUT_VALUE, function() {
354 354
             return GraphQLObjectType([
355 355
                 'name'            => GraphQL::INTROSPECTION_INPUT_VALUE,
356 356
                 'isIntrospection' => true,
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
                     'Arguments provided to Fields or Directives and the input fields of an ' .
359 359
                     'InputObject are represented as Input Values which describe their type ' .
360 360
                     'and optionally a default value.',
361
-                'fields'          => function () {
361
+                'fields'          => function() {
362 362
                     return [
363 363
                         'name'         => ['type' => GraphQLNonNull(GraphQLString())],
364 364
                         'description'  => ['type' => GraphQLString()],
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
                             'description' =>
369 369
                                 'A GraphQL-formatted string representing the default value for this ' .
370 370
                                 'input value.',
371
-                            'resolve'     => function ($inputValue) {
371
+                            'resolve'     => function($inputValue) {
372 372
                                 // TODO: Implement this when we have support for printing AST.
373 373
                                 return null;
374 374
                             }
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
             ]);
379 379
         }, true/* $shared */);
380 380
 
381
-        $this->container->add(GraphQL::INTROSPECTION_ENUM_VALUE, function () {
381
+        $this->container->add(GraphQL::INTROSPECTION_ENUM_VALUE, function() {
382 382
             return GraphQLObjectType([
383 383
                 'name'            => GraphQL::INTROSPECTION_ENUM_VALUE,
384 384
                 'isIntrospection' => true,
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
                     'One possible value for a given Enum. Enum values are unique values, not ' .
387 387
                     'a placeholder for a string or numeric value. However an Enum value is ' .
388 388
                     'returned in a JSON response as a string.',
389
-                'fields'          => function () {
389
+                'fields'          => function() {
390 390
                     return [
391 391
                         'name'              => ['type' => GraphQLNonNull(GraphQLString())],
392 392
                         'description'       => ['type' => GraphQLString()],
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
             ]);
398 398
         }, true/* $shared */);
399 399
 
400
-        $this->container->add(GraphQL::INTROSPECTION_TYPE_KIND, function () {
400
+        $this->container->add(GraphQL::INTROSPECTION_TYPE_KIND, function() {
401 401
             return GraphQLEnumType([
402 402
                 'name'            => GraphQL::INTROSPECTION_TYPE_KIND,
403 403
                 'isIntrospection' => true,
Please login to merge, or discard this patch.
src/Type/ScalarTypesProvider.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -36,18 +36,18 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function register()
38 38
     {
39
-        $this->container->add(GraphQL::BOOLEAN, function () {
39
+        $this->container->add(GraphQL::BOOLEAN, function() {
40 40
             return GraphQLScalarType([
41 41
                 'name'        => TypeNameEnum::BOOLEAN,
42 42
                 'description' => 'The `Boolean` scalar type represents `true` or `false`.',
43
-                'serialize'   => function ($value) {
43
+                'serialize'   => function($value) {
44 44
                     return coerceBoolean($value);
45 45
                 },
46
-                'parseValue'  => function ($value) {
46
+                'parseValue'  => function($value) {
47 47
                     return coerceBoolean($value);
48 48
                 },
49 49
 
50
-                'parseLiteral' => function (NodeInterface $node) {
50
+                'parseLiteral' => function(NodeInterface $node) {
51 51
                     if ($node instanceof BooleanValueNode) {
52 52
                         return $node->getValue();
53 53
                     }
@@ -56,20 +56,20 @@  discard block
 block discarded – undo
56 56
             ]);
57 57
         }, true/* $shared */);
58 58
 
59
-        $this->container->add(GraphQL::FLOAT, function () {
59
+        $this->container->add(GraphQL::FLOAT, function() {
60 60
             return GraphQLScalarType([
61 61
                 'name'         => TypeNameEnum::FLOAT,
62 62
                 'description'  =>
63 63
                     'The `Float` scalar type represents signed double-precision fractional ' .
64 64
                     'values as specified by ' .
65 65
                     '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).',
66
-                'serialize'    => function ($value) {
66
+                'serialize'    => function($value) {
67 67
                     return coerceFloat($value);
68 68
                 },
69
-                'parseValue'   => function ($value) {
69
+                'parseValue'   => function($value) {
70 70
                     return coerceFloat($value);
71 71
                 },
72
-                'parseLiteral' => function (NodeInterface $node) {
72
+                'parseLiteral' => function(NodeInterface $node) {
73 73
                     if ($node instanceof FloatValueNode || $node instanceof IntValueNode) {
74 74
                         return $node->getValue();
75 75
                     }
@@ -78,19 +78,19 @@  discard block
 block discarded – undo
78 78
             ]);
79 79
         }, true/* $shared */);
80 80
 
81
-        $this->container->add(GraphQL::INT, function () {
81
+        $this->container->add(GraphQL::INT, function() {
82 82
             return GraphQLScalarType([
83 83
                 'name'         => TypeNameEnum::INT,
84 84
                 'description'  =>
85 85
                     'The `Int` scalar type represents non-fractional signed whole numeric ' .
86 86
                     'values. Int can represent values between -(2^31) and 2^31 - 1.',
87
-                'serialize'    => function ($value) {
87
+                'serialize'    => function($value) {
88 88
                     return coerceInt($value);
89 89
                 },
90
-                'parseValue'   => function ($value) {
90
+                'parseValue'   => function($value) {
91 91
                     return coerceInt($value);
92 92
                 },
93
-                'parseLiteral' => function (NodeInterface $node) {
93
+                'parseLiteral' => function(NodeInterface $node) {
94 94
                     if ($node instanceof IntValueNode) {
95 95
                         $value = (int)$node->getValue();
96 96
                         if ($node->getValue() === (string)$value && $value <= PHP_INT_MAX && $value >= PHP_INT_MIN) {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             ]);
103 103
         }, true/* $shared */);
104 104
 
105
-        $this->container->add(GraphQL::ID, function () {
105
+        $this->container->add(GraphQL::ID, function() {
106 106
             return GraphQLScalarType([
107 107
                 'name'         => TypeNameEnum::ID,
108 108
                 'description'  =>
@@ -111,13 +111,13 @@  discard block
 block discarded – undo
111 111
                     'response as a String; however, it is not intended to be human-readable. ' .
112 112
                     'When expected as an input type, any string (such as `"4"`) or integer ' .
113 113
                     '(such as `4`) input value will be accepted as an ID.',
114
-                'serialize'    => function ($value) {
114
+                'serialize'    => function($value) {
115 115
                     return coerceString($value);
116 116
                 },
117
-                'parseValue'   => function ($value) {
117
+                'parseValue'   => function($value) {
118 118
                     return coerceString($value);
119 119
                 },
120
-                'parseLiteral' => function (NodeInterface $node) {
120
+                'parseLiteral' => function(NodeInterface $node) {
121 121
                     if ($node instanceof StringValueNode || $node instanceof IntValueNode) {
122 122
                         return $node->getValue();
123 123
                     }
@@ -126,20 +126,20 @@  discard block
 block discarded – undo
126 126
             ]);
127 127
         }, true/* $shared */);
128 128
 
129
-        $this->container->add(GraphQL::STRING, function () {
129
+        $this->container->add(GraphQL::STRING, function() {
130 130
             return GraphQLScalarType([
131 131
                 'name'         => TypeNameEnum::STRING,
132 132
                 'description'  =>
133 133
                     'The `String` scalar type represents textual data, represented as UTF-8 ' .
134 134
                     'character sequences. The String type is most often used by GraphQL to ' .
135 135
                     'represent free-form human-readable text.',
136
-                'serialize'    => function ($value) {
136
+                'serialize'    => function($value) {
137 137
                     return coerceString($value);
138 138
                 },
139
-                'parseValue'   => function ($value) {
139
+                'parseValue'   => function($value) {
140 140
                     return coerceString($value);
141 141
                 },
142
-                'parseLiteral' => function (NodeInterface $node) {
142
+                'parseLiteral' => function(NodeInterface $node) {
143 143
                     if ($node instanceof StringValueNode) {
144 144
                         return $node->getValue();
145 145
                     }
Please login to merge, or discard this patch.
src/Type/DirectivesProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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.',
Please login to merge, or discard this patch.
src/Validation/Rule/ProvidedNonNullArgumentsRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         }
35 35
 
36 36
         $argumentNodes   = $node->getArguments();
37
-        $argumentNodeMap = keyMap($argumentNodes, function (ArgumentNode $argument) {
37
+        $argumentNodeMap = keyMap($argumentNodes, function(ArgumentNode $argument) {
38 38
             return $argument->getNameValue();
39 39
         });
40 40
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         }
72 72
 
73 73
         $argumentNodes   = $node->getArguments();
74
-        $argumentNodeMap = keyMap($argumentNodes, function (ArgumentNode $argument) {
74
+        $argumentNodeMap = keyMap($argumentNodes, function(ArgumentNode $argument) {
75 75
             return $argument->getNameValue();
76 76
         });
77 77
 
Please login to merge, or discard this patch.
src/Validation/Rule/FragmentsOnCompositeTypesRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     protected function enterFragmentDefinition(FragmentDefinitionNode $node): ?NodeInterface
28 28
     {
29
-        $this->validateFragementNode($node, function (FragmentDefinitionNode $node) {
29
+        $this->validateFragementNode($node, function(FragmentDefinitionNode $node) {
30 30
             return fragmentOnNonCompositeMessage((string)$node, (string)$node->getTypeCondition());
31 31
         });
32 32
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     protected function enterInlineFragment(InlineFragmentNode $node): ?NodeInterface
40 40
     {
41
-        $this->validateFragementNode($node, function (InlineFragmentNode $node) {
41
+        $this->validateFragementNode($node, function(InlineFragmentNode $node) {
42 42
             return inlineFragmentOnNonCompositeMessage((string)$node->getTypeCondition());
43 43
         });
44 44
 
Please login to merge, or discard this patch.
src/Validation/Rule/FieldOnCorrectTypeRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
 
105 105
         $suggestedInterfaceTypes = \array_keys($interfaceUsageCount);
106 106
 
107
-        \uasort($suggestedInterfaceTypes, function ($a, $b) use ($interfaceUsageCount) {
107
+        \uasort($suggestedInterfaceTypes, function($a, $b) use ($interfaceUsageCount) {
108 108
             return $interfaceUsageCount[$b] - $interfaceUsageCount[$a];
109 109
         });
110 110
 
Please login to merge, or discard this patch.
src/Validation/Rule/KnownArgumentNamesRule.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
         $parentType      = $this->context->getParentType();
53 53
 
54 54
         if (null !== $fieldDefinition && null !== $parentType) {
55
-            $options = array_map(function (Argument $argument) {
55
+            $options = array_map(function(Argument $argument) {
56 56
                 return $argument->getName();
57 57
             }, $fieldDefinition->getArguments());
58 58
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $directive = $this->context->getDirective();
80 80
 
81 81
         if (null !== $directive) {
82
-            $options = array_map(function (Argument $argument) {
82
+            $options = array_map(function(Argument $argument) {
83 83
                 return $argument->getName();
84 84
             }, $directive->getArguments());
85 85
 
Please login to merge, or discard this patch.
src/Validation/Rule/KnownDirectivesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         /** @var Directive $directiveDefinition */
50 50
         $directiveDefinition = find(
51 51
             $this->context->getSchema()->getDirectives(),
52
-            function (Directive $definition) use ($node) {
52
+            function(Directive $definition) use ($node) {
53 53
                 return $definition->getName() === $node->getNameValue();
54 54
             }
55 55
         );
Please login to merge, or discard this patch.
src/Validation/Rule/LoneAnonymousOperationRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     protected function enterDocument(DocumentNode $node): ?NodeInterface
28 28
     {
29
-        $this->operationCount = \count(\array_filter($node->getDefinitions(), function ($definition) {
29
+        $this->operationCount = \count(\array_filter($node->getDefinitions(), function($definition) {
30 30
             return $definition instanceof OperationDefinitionNode;
31 31
         }));
32 32
 
Please login to merge, or discard this patch.