diff --git a/src/OrderBy/OrderByServiceProvider.php b/src/OrderBy/OrderByServiceProvider.php index 69d4f6712..0d5da4065 100644 --- a/src/OrderBy/OrderByServiceProvider.php +++ b/src/OrderBy/OrderByServiceProvider.php @@ -85,7 +85,11 @@ public static function createOrderByClauseInput(string $name, string $descriptio ); } - /** We generate this in the same general shape as the input object with columns, even though it is unnecessarily complex for this specific case, to make it a non-breaking change when columns are added. */ + /** + * We generate this in the same general shape as the input object with columns. + * It is unnecessarily complex for this specific case. + * This makes it a non-breaking change when columns are added. + */ public static function createRelationAggregateFunctionInput(string $name, string $description): InputObjectTypeDefinitionNode { return Parser::inputObjectTypeDefinition(/* @lang GraphQL */ <<