<?phpdeclare(strict_types=1);namespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class AppController extends AbstractController{ /** * @Route("/", name="app_index") */ public function index(): Response { return $this->redirectToRoute('auth_signin'); }}