Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
716cf56cb2.url-de-test.ws
/
htdocs_old
/
src
/
Controller
/
back
/
/srv/data/web/vhosts/716cf56cb2.url-de-test.ws/htdocs_old/src/Controller/back/PagesController.php
<?php namespace App\Controller\back; use Symfony\Component\Routing\Annotation\Route; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; class PagesController extends AbstractController { /** * @Route("/admin", name="admin") */ public function index() { return $this->render('back/pages/index.html.twig', [ 'slug' => 'admin', ]); } /** * @Route("/admin/fos-user-profile-show", name="fos_user_profile_show") */ public function fos_user_profile_show() { return $this->redirectToRoute('admin'); } }