src/Controller/ProfileController.php line 12
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class ProfileController extends AbstractController{#[Route('/profile', name: 'app_profile')]public function index(): Response{return $this->render('profile/index.html.twig', ['controller_name' => 'ProfileController',]);}}