<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class ProjectListController extends AbstractController{ #[Route('/project-list', name: 'app_project_list')] public function index(): Response { return $this->render('project_list/index.html.twig', [ 'controller_name' => 'ProjectListController', ]); }}