25 lines
373 B
PHP
25 lines
373 B
PHP
<?php
|
|
|
|
namespace service\modules\v1;
|
|
|
|
/**
|
|
* v1 module definition class
|
|
*/
|
|
class Module extends \yii\base\Module
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public $controllerNamespace = 'service\modules\v1\controllers';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
// custom initialization code goes here
|
|
}
|
|
}
|