<?php namespace App\Controller; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; class ErrorController extends AbstractController { public function indexAction() { return $this->render('errors/404.html.twig'); } }