TaoLer/app/index/controller/Error.php
2020-10-19 17:23:55 +08:00

12 lines
170 B
PHP

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