12345678910111213141516171819202122232425 |
- <?php
- namespace mobile\modules\live;
- /**
- * dinglongwan module definition class
- */
- class Module extends \yii\base\Module
- {
- /**
- * {@inheritdoc}
- */
- public $controllerNamespace = 'mobile\modules\live\controllers';
- /**
- * {@inheritdoc}
- */
- public function init()
- {
- parent::init();
- // custom initialization code goes here
- }
- }
|