guild/backend/modules/comment/Comment.php
2023-05-12 02:12:43 +03:00

25 lines
389 B
PHP

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