mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-03 14:54:04 +01:00
9 lines
116 B
PHP
9 lines
116 B
PHP
<?php
|
|
|
|
class DefaultController extends Controller
|
|
{
|
|
public function actionIndex()
|
|
{
|
|
$this->render('index');
|
|
}
|
|
} |