Skip to content

Commit

Permalink
fix: fully qualified class name
Browse files Browse the repository at this point in the history
  • Loading branch information
jpasquers committed Dec 1, 2023
1 parent 5df1bbc commit a7b0607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/FederatedSchemaPrinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ private static function printArgs($options, $args, $indentation = ''): string
return empty($arg->description);
})
) {
return '(' . implode(', ', array_map('FederatedSchemaPrinter::printInputValue', $args)) . ')';
return '(' . implode(', ', array_map(self::class . '::printInputValue', $args)) . ')';
}

return sprintf(
Expand Down

0 comments on commit a7b0607

Please sign in to comment.