Files
SmartHomePHP/modules/settings/controllers/DefaultController.php
Alex Solomaha bb5c8c8fd5 Some work
2016-09-11 00:17:29 +03:00

21 lines
348 B
PHP

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