This commit is contained in:
2019-12-23 16:28:30 +03:00
parent 56b42000c0
commit da78311a5c
6 changed files with 138 additions and 14 deletions

24
Module.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
namespace dominion\cron;
/**
* cron module definition class
*/
class Module extends \yii\base\Module
{
/**
* {@inheritdoc}
*/
public $controllerNamespace = 'dominion\cron\controllers';
/**
* {@inheritdoc}
*/
public function init()
{
parent::init();
// custom initialization code goes here
}
}