From 54dbf711f9d80305028ac1d3c1bda0ee1345376e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 11 Feb 2022 12:10:44 +0100 Subject: [PATCH] fix cs --- src/Bundle/ChillMainBundle/Controller/LocationApiController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Controller/LocationApiController.php b/src/Bundle/ChillMainBundle/Controller/LocationApiController.php index 237e91792..2cf5caaf9 100644 --- a/src/Bundle/ChillMainBundle/Controller/LocationApiController.php +++ b/src/Bundle/ChillMainBundle/Controller/LocationApiController.php @@ -36,11 +36,11 @@ class LocationApiController extends ApiController /** * @param QueryBuilder $query + * @param mixed $_format */ protected function orderQuery(string $action, $query, Request $request, PaginatorInterface $paginator, $_format) { return $query ->addOrderBy('e.name', 'ASC'); } - }