1
0

9 lines
116 B
PHP

<?php
class DefaultController extends Controller
{
public function actionIndex()
{
$this->render('index');
}
}