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