Files
SmartHomePHP/modules/admin/controllers/DefaultController.php
Alex Solomaha c021d959dd Refactor
2016-10-21 16:03:14 +03:00

21 lines
342 B
PHP

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