personal_area_php/frontend/modules/company/controllers/DefaultController.php
2024-04-24 18:02:58 +03:00

21 lines
351 B
PHP

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