SiteController.php 200 Bytes
Newer Older
Qiang Xue committed
1 2
<?php

crtlib committed
3 4
namespace app\controllers;

Qiang Xue committed
5 6 7 8 9 10 11 12
use yii\web\Controller;

class SiteController extends Controller
{
	public $defaultAction = 'hello';

	public function actionHello()
	{
13
		return 'hello world';
Qiang Xue committed
14 15
	}
}