src/Controller/Web/IndexController.php line 11
<?phpdeclare(strict_types=1);namespace App\Controller\Web;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;#[Route('/', 'index')]final class IndexController extends AbstractAppController{public function __invoke(): Response{if ($this->isGranted('ROLE_USER')) {return $this->redirectToRoute('dashboard');}return $this->render('index/index.html.twig');}}