<?php/** * Created by PhpStorm. * User: grego * Date: 07/11/2022 * Time: 18:14 */namespace App\Controller\CossBundle;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;class PageNotFoundController extends AbstractController{ public function pageNotFoundAction() { return $this->render('error.html.twig', array('status_code' => 404, 'status_text' => 'Bad Request')); }}