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.

24 lines
382 B

  1. <?php
  2. namespace backend\modules\goods;
  3. /**
  4. * goods module definition class
  5. */
  6. class Module extends \yii\base\Module
  7. {
  8. /**
  9. * {@inheritdoc}
  10. */
  11. public $controllerNamespace = 'backend\modules\goods\controllers';
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function init()
  16. {
  17. parent::init();
  18. // custom initialization code goes here
  19. }
  20. }