Passed
Pull Request — master (#153)
by Christoffer
02:21
created
src/Validation/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
         $context = $this->contextCreator->create($schema, $document, $typeInfo);
57 57
 
58
-        $visitors = \array_map(function (RuleInterface $rule) use ($context) {
58
+        $visitors = \array_map(function(RuleInterface $rule) use ($context) {
59 59
             return $rule->setContext($context);
60 60
         }, $rules);
61 61
 
Please login to merge, or discard this patch.
src/Util/ValueNodeResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
         $resolvedValues = [];
169 169
 
170 170
         /** @var ObjectFieldNode[] $fieldNodes */
171
-        $fieldNodes = keyMap($node->getFields(), function (ObjectFieldNode $value) {
171
+        $fieldNodes = keyMap($node->getFields(), function(ObjectFieldNode $value) {
172 172
             return $value->getNameValue();
173 173
         });
174 174
 
Please login to merge, or discard this patch.