Skip to content

Commit

Permalink
chore: fix null value for CS
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchalamon committed Feb 2, 2024
1 parent 8449727 commit f550780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GraphQl/Resolver/Factory/ResolverFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function __invoke(string $resourceClass = null, string $rootClass = null,
};
}

private function resolve(?array $source, array $args, ResolveInfo $info, string $rootClass = null, Operation $operation = null, mixed $body)
private function resolve(?array $source, array $args, ResolveInfo $info, string $rootClass = null, Operation $operation = null, mixed $body = null)
{
// Handles relay nodes
$operation ??= new Query();
Expand Down

0 comments on commit f550780

Please sign in to comment.