14 lines
211 B
PHP
14 lines
211 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace frontend\modules\histo\controllers;
|
||
|
|
|
||
|
|
use yii\web\Controller;
|
||
|
|
|
||
|
|
class DefaultController extends Controller
|
||
|
|
{
|
||
|
|
public function actionIndex()
|
||
|
|
{
|
||
|
|
return $this->render('index');
|
||
|
|
}
|
||
|
|
}
|