Passed
Push — main ( f4d6db...a0caf6 )
by Jeroen
13:41 queued 59s
created
Category
src/TypeResolver/RootTypeResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
             throw ResolveException::nodeClassNameNotInContainer($node->getClassName());
35 35
         }
36 36
 
37
-        return function ($rootValue, array $args) use ($node, $ast) {
37
+        return function($rootValue, array $args) use ($node, $ast) {
38 38
             /** @var array<string, mixed> $args */
39 39
             return $this->container->get($node->getClassName())->{$node->methodName}(
40 40
                 ...array_map(
Please login to merge, or discard this patch.
src/TypeResolver/FieldResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
     public function resolve(FieldNode $fieldNode, Ast $ast): callable
31 31
     {
32
-        return function (object $object, array $args) use ($fieldNode, $ast) {
32
+        return function(object $object, array $args) use ($fieldNode, $ast) {
33 33
             if ($fieldNode->fieldType === FieldNodeType::Property) {
34 34
                 return $this->resolveField(
35 35
                     $fieldNode,
Please login to merge, or discard this patch.