guild/backend/modules/hh/Hh.php
2019-06-21 18:05:58 +03:00

25 lines
369 B
PHP
Executable File

<?php
namespace backend\modules\hh;
/**
* hh module definition class
*/
class Hh extends \yii\base\Module
{
/**
* {@inheritdoc}
*/
public $controllerNamespace = 'backend\modules\hh\controllers';
/**
* {@inheritdoc}
*/
public function init()
{
parent::init();
// custom initialization code goes here
}
}