src/Controller/PageNotFound.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  5. /**
  6.  * Class PageNotFound
  7.  * @package App\Controller
  8.  */
  9. class PageNotFound extends AbstractController
  10. {
  11.     public function pageNotFound()
  12.     {
  13.         throw new NotFoundHttpException();
  14.     }
  15. }