3
0
Fork 0
yii-cron/controllers/DefaultController.php

21 lines
337 B
PHP
Raw Normal View History

2019-12-23 16:28:30 +03:00
<?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');
}
}