guild/backend/modules/hh/Hh.php

25 lines
369 B
PHP
Raw Normal View History

2018-11-21 17:02:14 +03:00
<?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
}
}