hy-farm/muchang/home/controllers/ErrorController.php
2026-05-29 19:54:56 +08:00

21 lines
297 B
PHP

<?php
namespace app\controllers;
use yii\rest\Controller;
class ErrorController extends Controller
{
public $layout = "error";
public function actions()
{
return [
'index' => [
'class' => 'yii\web\ErrorAction',
]
];
}
}