6 lines
85 B
PHP
6 lines
85 B
PHP
<?php
|
|
|
|
$app->notFound(function() use ($app) {
|
|
$app->render('errors/404.twig');
|
|
});
|