May or may not be related to #2176 ? This does not work: ```php #[IsGranted('ROLE_ADMIN')] #[Route(path: '/admin', name: 'admin', methods: ['GET', 'POST'])] public function admin(Request $request): Response ``` This works: ```php #[Route(path: '/admin', name: 'admin', methods: ['GET', 'POST'])] #[IsGranted('ROLE_ADMIN')] public function admin(Request $request): Response ```