Skip to content

Commit a7b0607

Browse files
committed
fix: fully qualified class name
1 parent 5df1bbc commit a7b0607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utils/FederatedSchemaPrinter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ private static function printArgs($options, $args, $indentation = ''): string
254254
return empty($arg->description);
255255
})
256256
) {
257-
return '(' . implode(', ', array_map('FederatedSchemaPrinter::printInputValue', $args)) . ')';
257+
return '(' . implode(', ', array_map(self::class . '::printInputValue', $args)) . ')';
258258
}
259259

260260
return sprintf(

0 commit comments

Comments
 (0)