ErrorController.php 260 B

1234567891011121314
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. class ErrorController extends AbstractController
  5. {
  6. public function indexAction() {
  7. return $this->render('errors/404.html.twig');
  8. }
  9. }