| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class IndexAction extends Action |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string the view file to be rendered. If not set, it will take the value of [[id]]. |
||
| 22 | * That means, if you name the action as "index" in "SchedulerController", then the view name |
||
| 23 | * would be "index", and the corresponding view file would be "views/scheduler/index.php". |
||
| 24 | */ |
||
| 25 | public $view; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Runs the action |
||
| 29 | * |
||
| 30 | * @return string result content |
||
| 31 | */ |
||
| 32 | public function run() |
||
| 43 |