20 lines
334 B
PHP
20 lines
334 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();
|
|
}
|
|
} |