<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class PageNotFoundController extends AbstractController {
public function pageNotFoundAction() {
throw new NotFoundHttpException();
}
}