personal_area_php/frontend/modules/check/controllers/DefaultController.php

21 lines
347 B
PHP
Raw Normal View History

2024-04-24 18:02:58 +03:00
<?php
namespace frontend\modules\check\controllers;
use yii\web\Controller;
/**
* Default controller for the `check` module
*/
class DefaultController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
return $this->render('index');
}
}