badping_nagios_better/src/controllers/ErrorsController.php
2019-11-11 01:58:17 +03:00

21 строка
340 B
PHP

<?php
namespace MyApp\Controller;
use MyApp\Core\Controller;
use MyApp\Core\View;
class ErrorsController extends Controller
{
public function get404()
{
$this->htmlResponse((new View())->setTitle('404 Page not found')->render('404'),
404);
}
public function post404()
{
echo 404;
}
}