mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-23 12:51:21 +01:00
21 lines
342 B
PHP
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');
|
|
}
|
|
}
|