guild/backend/modules/interview/Interview.php

25 lines
397 B
PHP
Executable File

<?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
}
}