adjusted default application template

This commit is contained in:
Alexander Makarov
2012-12-26 20:08:35 +04:00
parent 476266a25b
commit f8664a38de
8 changed files with 48 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
<?php
use \yii\web\Controller;
/**
* SiteController
*/
class SiteController extends Controller
{
public function actionIndex()
{
echo $this->render('index', array(
'name' => 'Qiang',
));
}
}