Passed
Pull Request — master (#130)
by Quang
02:08
created
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.
src/Validation/Rule/NoFragmentCyclesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
                 $this->context->reportError(
103 103
                     new ValidationException(
104
-                        fragmentCycleMessage($spreadName, \array_map(function (FragmentSpreadNode $spread) {
104
+                        fragmentCycleMessage($spreadName, \array_map(function(FragmentSpreadNode $spread) {
105 105
                             return $spread->getNameValue();
106 106
                         }, $cyclePath)),
107 107
                         \array_merge($cyclePath, [$spreadNode])
Please login to merge, or discard this patch.
src/Execution/ValuesResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             return $coercedValues;
47 47
         }
48 48
 
49
-        $argumentNodeMap = keyMap($argumentNodes, function (ArgumentNode $value) {
49
+        $argumentNodeMap = keyMap($argumentNodes, function(ArgumentNode $value) {
50 50
             return $value->getNameValue();
51 51
         });
52 52
 
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
         $variableValues = []
178 178
     ): ?array {
179 179
         $directiveNode = $node->hasDirectives()
180
-            ? find($node->getDirectives(), function ($value) use ($directive) {
180
+            ? find($node->getDirectives(), function($value) use ($directive) {
181 181
                 return $value->getNameValue() === $directive->getName();
182 182
             }) : null;
183 183
 
Please login to merge, or discard this patch.
src/Language/LanguageProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,14 +36,14 @@
 block discarded – undo
36 36
      */
37 37
     public function register()
38 38
     {
39
-        $this->container->add(NodeBuilderInterface::class, function () {
39
+        $this->container->add(NodeBuilderInterface::class, function() {
40 40
             return new NodeBuilder(SupportedBuilders::get());
41 41
         });
42 42
 
43 43
         $this->container->add(ParserInterface::class, Parser::class, true/* $shared */)
44 44
             ->withArgument(NodeBuilderInterface::class);
45 45
 
46
-        $this->container->add(LexerInterface::class, function () {
46
+        $this->container->add(LexerInterface::class, function() {
47 47
             return new Lexer(SupportedReaders::get());
48 48
         });
49 49
 
Please login to merge, or discard this patch.
src/SchemaValidator/Rule/RootTypesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         /** @var OperationTypeDefinitionNode $operationTypeNode */
90 90
         $operationTypeNode = find(
91 91
             $node->getOperationTypes(),
92
-            function (OperationTypeDefinitionNode $operationType) use ($operation) {
92
+            function(OperationTypeDefinitionNode $operationType) use ($operation) {
93 93
                 return $operationType->getOperation() === $operation;
94 94
             }
95 95
         );
Please login to merge, or discard this patch.
src/Validation/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
         $context = $this->contextBuilder->build($schema, $document, $typeInfo);
49 49
 
50
-        $visitors = \array_map(function (RuleInterface $rule) use ($context) {
50
+        $visitors = \array_map(function(RuleInterface $rule) use ($context) {
51 51
             return $rule->setContext($context);
52 52
         }, $rules);
53 53
 
Please login to merge, or discard this patch.
src/Type/Definition/ResolveTypeTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function resolveType(...$args)
18 18
     {
19
-        if(isset($this->resolveTypeFunction)) {
19
+        if (isset($this->resolveTypeFunction)) {
20 20
             return \call_user_func_array($this->resolveTypeFunction, $args);
21 21
         }
22 22
 
Please login to merge, or discard this patch.