TaoLer/app/index/controller/Error.php
2020-01-12 15:03:13 +08:00

13 lines
198 B
PHP

<?php
namespace app\index\controller;
use think\facade\View;
class Error
{
public function __call($method, $args)
{
//return 'error request!';
return View::fetch('404');
}
}