src/Admin/UI/Web/Controller/DefaultController.php line 12
<?phpdeclare(strict_types=1);namespace App\Admin\UI\Web\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;class DefaultController extends AbstractController{public function index(): Response{return $this->render('Admin/base.html.twig');}}