guild/frontend/modules/reports/controllers/DefaultController.php

21 lines
351 B
PHP
Executable File

<?php
namespace frontend\modules\reports\controllers;
use yii\web\Controller;
/**
* Default controller for the `reports` module
*/
class DefaultController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
return $this->render('index');
}
}