Files
yii2/framework/console/create/default/protected/controllers/SiteController.php
2012-12-26 20:08:35 +04:00

15 lines
203 B
PHP

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