Module.php 361 B

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