update cs after php-cs-fixer upgrade

This commit is contained in:
2024-09-12 12:02:33 +02:00
parent 5d0b531820
commit f0f651edea
286 changed files with 374 additions and 374 deletions

View File

@@ -38,7 +38,7 @@ final readonly class PaginatorFactory implements PaginatorFactoryInterface
* the default item per page. This may be overriden by
* the request or inside the paginator.
*/
private int $itemPerPage = 20
private int $itemPerPage = 20,
) {}
/**
@@ -53,7 +53,7 @@ final readonly class PaginatorFactory implements PaginatorFactoryInterface
public function create(
int $totalItems,
?string $route = null,
?array $routeParameters = null
?array $routeParameters = null,
): PaginatorInterface {
return new Paginator(
$totalItems,