src/Controller/CossBundle/PageNotFoundController.php line 16

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: grego
  5.  * Date: 07/11/2022
  6.  * Time: 18:14
  7.  */
  8. namespace App\Controller\CossBundle;
  9. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  10. class PageNotFoundController extends AbstractController
  11. {
  12.     public function pageNotFoundAction()
  13.     {
  14.         return $this->render('error.html.twig', array('status_code' => 404'status_text' => 'Bad Request'));
  15.     }
  16. }