kokjan/frontend/controllers/FileController.php

13 lines
179 B
PHP
Raw Normal View History

2026-02-25 06:59:34 +00:00
<?php
namespace frontend\controllers;
class FileController extends \yii\web\Controller
{
public function actionIndex()
{
return $this->render('index');
}
}