| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace backend\modules\common;
- use Yii;
- /**
- * member module definition class
- */
- class Module extends \yii\base\Module
- {
- /**
- * {@inheritdoc}
- */
- public $controllerNamespace = 'backend\modules\common\controllers';
- /**
- * {@inheritdoc}
- */
- public function init()
- {
- parent::init();
- // Yii::$app->services->merchant->addId(0);
- // custom initialization code goes here
- }
- }
|