Files
yii2/apps/benchmark/protected/controllers/SiteController.php
2014-03-16 10:46:21 +06:00

16 lines
218 B
PHP

<?php
namespace app\controllers;
use yii\web\Controller;
class SiteController extends Controller
{
public $defaultAction = 'hello';
public function actionHello()
{
return 'hello world';
}
}