<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;/** * Class PageNotFound * @package App\Controller */class PageNotFound extends AbstractController{ public function pageNotFound() { throw new NotFoundHttpException(); }}