mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-07 10:26:50 +01:00
25 lines
379 B
PHP
25 lines
379 B
PHP
<?php
|
|
|
|
namespace app\modules\settings;
|
|
|
|
/**
|
|
* settings module definition class
|
|
*/
|
|
class Module extends \yii\base\Module
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public $controllerNamespace = 'app\modules\settings\controllers';
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
// custom initialization code goes here
|
|
}
|
|
}
|