guild/backend/modules/task/controllers/DefaultController.php
2021-11-23 13:13:19 +03:00

21 lines
344 B
PHP

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