cxfoot/modules/file/controllers/DefaultController.php
2023-10-24 14:54:18 +08:00

20 lines
315 B
PHP

<?php
/**
* @author Any
* @description KISS
* @date 2020-11-5
* @version 1.0.0
*
* _____LOG_____
*
*/
namespace app\modules\file\controllers;
class DefaultController extends \app\controllers\Controller
{
public function actionIndex()
{
throw new \yii\web\NotFoundHttpException();
}
}