src/Controller/DefaultController.php line 18
<?php/** @author Guerby Duval <info@tranzaksyon.com>* @link https://tranzaksyon.com* @copyright You are not allowed to remove this author "Guerby Duval <info@tranzaksyon.com>", the link "https://tranzaksyon.com" neither this copyright.*/namespace App\Controller;use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;#[IsGranted('ROLE_USER')]class DefaultController extends SriInfoController{#[Route('/', name: 'app_home')]public function index(): Response{return $this->redirectToRoute('settings_list');}#[Route('/logout', name: 'app_logout', methods: ['GET'])]public function logout(){// controller can be blank: it will never be called!throw new \Exception('Don\'t forget to activate logout in security.yaml');}}