src/Controller/PageNotFoundController.php line 12

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. class PageNotFoundController extends AbstractController {
  6.     
  7.     public function pageNotFoundAction() {
  8.         throw new NotFoundHttpException();
  9.     }
  10. }