21 строка
340 B
PHP
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;
|
|
}
|
|
}
|