Passed
Push — master ( abc3c7...fc38ef )
by Christoffer
02:42
created
src/Language/Node/SchemaDefinitionNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getOperationTypesAsArray(): array
35 35
     {
36
-        return array_map(function (SerializationInterface $node) {
36
+        return array_map(function(SerializationInterface $node) {
37 37
             return $node->toArray();
38 38
         }, $this->operationTypes);
39 39
     }
Please login to merge, or discard this patch.
src/Language/Node/EnumValuesTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     public function getValuesAsArray(): array
34 34
     {
35
-        return array_map(function (SerializationInterface $node) {
35
+        return array_map(function(SerializationInterface $node) {
36 36
             return $node->toArray();
37 37
         }, $this->values);
38 38
     }
Please login to merge, or discard this patch.
src/Language/Node/VariableDefinitionsTrait.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
     public function getVariableDefinitionsAsArray(): array
28 28
     {
29
-        return array_map(function (SerializationInterface $node) {
29
+        return array_map(function(SerializationInterface $node) {
30 30
             return $node->toArray();
31 31
         }, $this->variableDefinitions);
32 32
     }
Please login to merge, or discard this patch.
src/Language/Visitor/TypeInfoVisitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
             if (null !== $fieldOrDirective) {
107 107
                 $argumentDefinition = find(
108 108
                     $fieldOrDirective->getArguments(),
109
-                    function (Argument $argument) use ($node) {
109
+                    function(Argument $argument) use ($node) {
110 110
                         return $argument->getName() === $node->getNameValue();
111 111
                     }
112 112
                 );
Please login to merge, or discard this patch.
src/Validation/Conflict/FindsConflictsTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -691,13 +691,13 @@
 block discarded – undo
691 691
 
692 692
         return new Conflict(
693 693
             $responseName,
694
-            array_map(function (Conflict $conflict) {
694
+            array_map(function(Conflict $conflict) {
695 695
                 return [$conflict->getResponseName(), $conflict->getReason()];
696 696
             }, $conflicts),
697
-            array_reduce($conflicts, function ($allFields, Conflict $conflict) {
697
+            array_reduce($conflicts, function($allFields, Conflict $conflict) {
698 698
                 return array_merge($allFields, $conflict->getFieldsA());
699 699
             }, [$nodeA]),
700
-            array_reduce($conflicts, function ($allFields, Conflict $conflict) {
700
+            array_reduce($conflicts, function($allFields, Conflict $conflict) {
701 701
                 return array_merge($allFields, $conflict->getFieldsB());
702 702
             }, [$nodeB])
703 703
         );
Please login to merge, or discard this patch.
src/Validation/messages.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
         return conflictReasonMessage([$reason]);
219 219
     }
220 220
 
221
-    return implode(' and ', array_map(function ($reason) {
221
+    return implode(' and ', array_map(function($reason) {
222 222
         [$responseName, $subreason] = $reason;
223 223
         return sprintf('subfields "%s" conflict because %s', $responseName, conflictReasonMessage($subreason));
224 224
     }, $reason));
Please login to merge, or discard this patch.
src/Validation/Rule/ValuesOfCorrectTypeRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
         // Ensure every required field exists.
116 116
         $inputFields  = $type->getFields();
117
-        $fieldNodeMap = keyMap($node->getFields(), function (ObjectFieldNode $field) {
117
+        $fieldNodeMap = keyMap($node->getFields(), function(ObjectFieldNode $field) {
118 118
             return $field->getNameValue();
119 119
         });
120 120
 
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
     protected function getEnumTypeSuggestion(NamedTypeInterface $type, ValueNodeInterface $node): ?string
262 262
     {
263 263
         if ($type instanceof EnumType) {
264
-            $suggestions = suggestionList(printNode($node), \array_map(function (EnumValue $value) {
264
+            $suggestions = suggestionList(printNode($node), \array_map(function(EnumValue $value) {
265 265
                 return $value->getName();
266 266
             }, $type->getValues()));
267 267
 
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.