25 lines
383 B
PHP
25 lines
383 B
PHP
<?php
|
|
|
|
namespace frontend\modules\check;
|
|
|
|
/**
|
|
* check module definition class
|
|
*/
|
|
class Check extends \yii\base\Module
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public $controllerNamespace = 'frontend\modules\check\controllers';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
// custom initialization code goes here
|
|
}
|
|
}
|