mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 06:17:56 +08:00
15 lines
203 B
PHP
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',
|
|
));
|
|
}
|
|
} |