You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
388 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2018/9/13
  6. * Time: 11:47
  7. */
  8. namespace antgoods\goods;
  9. class Module extends \yii\base\Module
  10. {
  11. /**
  12. * {@inheritdoc}
  13. */
  14. public $controllerNamespace = 'antgoods\goods\controllers';
  15. /**
  16. * {@inheritdoc}
  17. */
  18. public function init()
  19. {
  20. parent::init();
  21. // custom initialization code goes here
  22. }
  23. }