Passed
Pull Request — master (#130)
by Quang
02:08
created
src/Language/helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
  */
147 147
 function locationsShorthandToArray(array $locations): array
148 148
 {
149
-    return array_map(function ($shorthand) {
149
+    return array_map(function($shorthand) {
150 150
         return locationShorthandToArray($shorthand);
151 151
     }, $locations);
152 152
 }
Please login to merge, or discard this patch.
src/Util/TypeComparator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
                 // If both types are abstract, then determine if there is any intersection
93 93
                 // between possible concrete types of each.
94 94
                 return arraySome($schema->getPossibleTypes($typeA),
95
-                    function (TypeInterface $type) use ($schema, $typeB) {
95
+                    function(TypeInterface $type) use ($schema, $typeB) {
96 96
                         return $schema->isPossibleType($typeB, $type);
97 97
                     });
98 98
             }
Please login to merge, or discard this patch.
src/Util/orList.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     return $count === 1
20 20
         ? $selected[0]
21
-        : array_reduce($selected, function ($list, $item) use ($count, &$index) {
21
+        : array_reduce($selected, function($list, $item) use ($count, &$index) {
22 22
             $list .= ($index > 0 && $index < ($count - 1) ? ', ' : '') . ($index === ($count - 1) ? ' or ' : '') .
23 23
                 $item;
24 24
             $index++;
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
  */
35 35
 function quotedOrList(array $items): string
36 36
 {
37
-    return orList(array_map(function ($item) {
37
+    return orList(array_map(function($item) {
38 38
         return '"' . $item . '"';
39 39
     }, $items));
40 40
 }
Please login to merge, or discard this patch.
src/Util/suggestionList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     $result = \array_keys($optionsByDistance);
27 27
 
28
-    \usort($result, function ($a, $b) use ($optionsByDistance) {
28
+    \usort($result, function($a, $b) use ($optionsByDistance) {
29 29
         return $optionsByDistance[$a] - $optionsByDistance[$b];
30 30
     });
31 31
 
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/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.