renamed create -> webapp/create, specified global options

This commit is contained in:
Alexander Makarov
2013-02-20 00:30:02 +04:00
parent 63cb47e1f5
commit a25f870090
8 changed files with 75 additions and 7 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',
));
}
}