ubn5/frontend/controllers/FileController.php

13 lines
179 B
PHP
Raw Normal View History

2025-02-10 05:21:56 +00:00
<?php
namespace frontend\controllers;
class FileController extends \yii\web\Controller
{
public function actionIndex()
{
return $this->render('index');
}
}