guild/backend/modules/holiday/Holiday.php
2019-12-10 17:22:20 +03:00

21 lines
345 B
PHP
Executable File

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