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