CabinetController.php
531 Bytes
<?php
namespace frontend\controllers;
use yii\web\Controller;
/**
* Cabinet controller
*/
class CabinetController extends Controller
{
/**
* @inheritdoc
*/
public function behaviors()
{
return [
];
}
/**
* Displays index page.
*
* @return mixed
*/
public function actionIndex()
{
return $this->render('index');
}
}