Skip to content

Commit

Permalink
fix: remove use of self in callable (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpasquers authored Dec 1, 2023
1 parent aec3604 commit 5df1bbc
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('self::printInputValue', $args)) . ')';
return '(' . implode(', ', array_map('FederatedSchemaPrinter::printInputValue', $args)) . ')';
}

return sprintf(
Expand Down

0 comments on commit 5df1bbc

Please sign in to comment.