Module.php 336 B

12345678910111213141516171819202122
  1. <?php
  2. namespace backend\modules\common;
  3. /**
  4. * common module definition class
  5. */
  6. class Module extends \yii\base\Module
  7. {
  8. /**
  9. * {@inheritdoc}
  10. */
  11. public $controllerNamespace = 'backend\modules\common\controllers';
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function init()
  16. {
  17. parent::init();
  18. }
  19. }
粤ICP备19079148号