Passed
Pull Request — master (#128)
by Christoffer
02:40
created
src/SchemaBuilder/DefinitionBuilder.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
         $builtInTypes = keyMap(
99 99
             array_merge(specifiedScalarTypes(), introspectionTypes()),
100
-            function (NamedTypeInterface $type) {
100
+            function(NamedTypeInterface $type) {
101 101
                 return $type->getName();
102 102
             }
103 103
         );
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         return GraphQLDirective([
161 161
             'name'        => $node->getNameValue(),
162 162
             'description' => $node->getDescriptionValue(),
163
-            'locations'   => array_map(function (NameNode $node) {
163
+            'locations'   => array_map(function(NameNode $node) {
164 164
                 return $node->getValue();
165 165
             }, $node->getLocations()),
166 166
             'arguments'   => $node->hasArguments() ? $this->buildArguments($node->getArguments()) : [],
@@ -207,10 +207,10 @@  discard block
 block discarded – undo
207 207
     {
208 208
         return keyValueMap(
209 209
             $nodes,
210
-            function (InputValueDefinitionNode $value) {
210
+            function(InputValueDefinitionNode $value) {
211 211
                 return $value->getNameValue();
212 212
             },
213
-            function (InputValueDefinitionNode $value): array {
213
+            function(InputValueDefinitionNode $value): array {
214 214
                 $type = $this->buildWrappedType($value->getType());
215 215
                 return [
216 216
                     'type'         => $type,
@@ -259,11 +259,11 @@  discard block
 block discarded – undo
259 259
         return GraphQLObjectType([
260 260
             'name'        => $node->getNameValue(),
261 261
             'description' => $node->getDescriptionValue(),
262
-            'fields'      => function () use ($node) {
262
+            'fields'      => function() use ($node) {
263 263
                 return $this->buildFields($node);
264 264
             },
265
-            'interfaces'  => function () use ($node) {
266
-                return $node->hasInterfaces() ? array_map(function (NodeInterface $interface) {
265
+            'interfaces'  => function() use ($node) {
266
+                return $node->hasInterfaces() ? array_map(function(NodeInterface $interface) {
267 267
                     return $this->buildType($interface);
268 268
                 }, $node->getInterfaces()) : [];
269 269
             },
@@ -280,11 +280,11 @@  discard block
 block discarded – undo
280 280
 
281 281
         return $node->hasFields() ? keyValueMap(
282 282
             $node->getFields(),
283
-            function ($value) {
283
+            function($value) {
284 284
                 /** @noinspection PhpUndefinedMethodInspection */
285 285
                 return $value->getNameValue();
286 286
             },
287
-            function ($value) use ($resolverMap) {
287
+            function($value) use ($resolverMap) {
288 288
                 return $this->buildField($value, $resolverMap);
289 289
             }
290 290
         ) : [];
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
         return GraphQLInterfaceType([
300 300
             'name'        => $node->getNameValue(),
301 301
             'description' => $node->getDescriptionValue(),
302
-            'fields'      => function () use ($node): array {
302
+            'fields'      => function() use ($node): array {
303 303
                 return $this->buildFields($node);
304 304
             },
305 305
             'astNode'     => $node,
@@ -317,10 +317,10 @@  discard block
 block discarded – undo
317 317
             'description' => $node->getDescriptionValue(),
318 318
             'values'      => $node->hasValues() ? keyValueMap(
319 319
                 $node->getValues(),
320
-                function (EnumValueDefinitionNode $value): string {
320
+                function(EnumValueDefinitionNode $value): string {
321 321
                     return $value->getNameValue();
322 322
                 },
323
-                function (EnumValueDefinitionNode $value): array {
323
+                function(EnumValueDefinitionNode $value): array {
324 324
                     return [
325 325
                         'description'       => $value->getDescriptionValue(),
326 326
                         'deprecationReason' => $this->getDeprecationReason($value),
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
         return GraphQLUnionType([
342 342
             'name'        => $node->getNameValue(),
343 343
             'description' => $node->getDescriptionValue(),
344
-            'types'       => $node->hasTypes() ? array_map(function (TypeNodeInterface $type) {
344
+            'types'       => $node->hasTypes() ? array_map(function(TypeNodeInterface $type) {
345 345
                 return $this->buildType($type);
346 346
             }, $node->getTypes()) : [],
347 347
             'astNode'     => $node,
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
         return GraphQLScalarType([
358 358
             'name'        => $node->getNameValue(),
359 359
             'description' => $node->getDescriptionValue(),
360
-            'serialize'   => function ($value) {
360
+            'serialize'   => function($value) {
361 361
                 return $value;
362 362
             },
363 363
             'astNode'     => $node,
@@ -373,13 +373,13 @@  discard block
 block discarded – undo
373 373
         return GraphQLInputObjectType([
374 374
             'name'        => $node->getNameValue(),
375 375
             'description' => $node->getDescriptionValue(),
376
-            'fields'      => $node->hasFields() ? function () use ($node) {
376
+            'fields'      => $node->hasFields() ? function() use ($node) {
377 377
                 return keyValueMap(
378 378
                     $node->getFields(),
379
-                    function (InputValueDefinitionNode $value): string {
379
+                    function(InputValueDefinitionNode $value): string {
380 380
                         return $value->getNameValue();
381 381
                     },
382
-                    function (InputValueDefinitionNode $value): array {
382
+                    function(InputValueDefinitionNode $value): array {
383 383
                         $type = $this->buildWrappedType($value->getType());
384 384
                         return [
385 385
                             'type'         => $type,
Please login to merge, or discard this patch.
src/Util/helpers.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     return $count === 1
34 34
         ? $selected[0]
35
-        : \array_reduce($selected, function ($list, $item) use ($count, &$index) {
35
+        : \array_reduce($selected, function($list, $item) use ($count, &$index) {
36 36
             $list .= ($index > 0 && $index < ($count - 1) ? ', ' : '') . ($index === ($count - 1) ? ' or ' : '') .
37 37
                 $item;
38 38
             $index++;
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     $result = \array_keys($optionsByDistance);
68 68
 
69
-    \usort($result, function ($a, $b) use ($optionsByDistance) {
69
+    \usort($result, function($a, $b) use ($optionsByDistance) {
70 70
         return $optionsByDistance[$a] - $optionsByDistance[$b];
71 71
     });
72 72
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
  */
82 82
 function quotedOrList(array $items): string
83 83
 {
84
-    return orList(array_map(function ($item) {
84
+    return orList(array_map(function($item) {
85 85
         return '"' . $item . '"';
86 86
     }, $items));
87 87
 }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
  */
96 96
 function arrayEvery(array $array, callable $fn): bool
97 97
 {
98
-    return array_reduce($array, function ($result, $value) use ($fn) {
98
+    return array_reduce($array, function($result, $value) use ($fn) {
99 99
         return $result && $fn($value);
100 100
     }, true);
101 101
 }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
  */
108 108
 function arraySome(array $array, callable $fn)
109 109
 {
110
-    return array_reduce($array, function ($result, $value) use ($fn) {
110
+    return array_reduce($array, function($result, $value) use ($fn) {
111 111
         return $result || $fn($value);
112 112
     });
113 113
 }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
  */
136 136
 function keyMap(array $array, callable $keyFn): array
137 137
 {
138
-    return array_reduce($array, function ($map, $item) use ($keyFn) {
138
+    return array_reduce($array, function($map, $item) use ($keyFn) {
139 139
         $map[$keyFn($item)] = $item;
140 140
         return $map;
141 141
     }, []);
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
  */
150 150
 function keyValueMap(array $array, callable $keyFn, callable $valFn): array
151 151
 {
152
-    return array_reduce($array, function ($map, $item) use ($keyFn, $valFn) {
152
+    return array_reduce($array, function($map, $item) use ($keyFn, $valFn) {
153 153
         $map[$keyFn($item)] = $valFn($item);
154 154
         return $map;
155 155
     }, []);
Please login to merge, or discard this patch.