Skip to content

Commit a979096

Browse files
chore: fix null value for CS
1 parent 46b8612 commit a979096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GraphQl/Resolver/Factory/ResolverFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function __invoke(?string $resourceClass = null, ?string $rootClass = nul
5555
};
5656
}
5757

58-
private function resolve(?array $source, array $args, ResolveInfo $info, string $rootClass = null, Operation $operation = null, mixed $body)
58+
private function resolve(?array $source, array $args, ResolveInfo $info, string $rootClass = null, Operation $operation = null, mixed $body = null)
5959
{
6060
// Handles relay nodes
6161
$operation ??= new Query();

0 commit comments

Comments
 (0)