guild/backend/modules/interview/Interview.php

25 lines
397 B
PHP
Raw Normal View History

2021-08-16 14:32:54 +03:00
<?php
namespace backend\modules\interview;
/**
* interview module definition class
*/
class Interview extends \yii\base\Module
{
/**
* {@inheritdoc}
*/
public $controllerNamespace = 'backend\modules\interview\controllers';
/**
* {@inheritdoc}
*/
public function init()
{
parent::init();
// custom initialization code goes here
}
}