<?phpnamespace App\Controller;use Symfony\Component\Routing\Annotation\Route;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;class PageNotFoundController extends AbstractController{ #[Route(path: '/error404', name: 'error')] public function pageNotFoundAction() { return $this->render('pagenotfound/error404.html.twig'); }}