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