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