mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 00:24:01 +01:00
13 lines
175 B
PHP
13 lines
175 B
PHP
<?php
|
|
|
|
namespace app\controllers;
|
|
|
|
class PanelController extends \yii\web\Controller
|
|
{
|
|
public function actionIndex()
|
|
{
|
|
return $this->render('index');
|
|
}
|
|
|
|
}
|