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

View File

@@ -0,0 +1,20 @@
<?php
namespace dominion\cron\controllers;
use yii\web\Controller;
/**
* Default controller for the `cron` module
*/
class DefaultController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
return $this->render('index');
}
}