TaoLer/app/index/controller/Error.php

13 lines
233 B
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
namespace app\index\controller;
2020-01-12 15:03:13 +08:00
use think\facade\View;
use app\common\controller\BaseController;
2020-01-12 15:03:13 +08:00
class Error extends BaseController
2020-01-01 13:17:19 +08:00
{
public function __call($method, $args)
{
return View::fetch('error/404');
2020-01-01 13:17:19 +08:00
}
}