guild/backend/modules/notes/Notes.php
2019-12-05 17:03:00 +03:00

25 lines
381 B
PHP
Executable File

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