13 lines
179 B
PHP
13 lines
179 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace frontend\controllers;
|
||
|
|
|
||
|
|
class FileController extends \yii\web\Controller
|
||
|
|
{
|
||
|
|
public function actionIndex()
|
||
|
|
{
|
||
|
|
return $this->render('index');
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|