<?php/** * Created by PhpStorm. * User: grego * Date: 27/06/2022 * Time: 16:58 */namespace App\Controller\ClientBOBundle;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')); }}