Files
yii2/apps/benchmark/protected/controllers/SiteController.php
2013-05-26 17:53:51 -04:00

14 lines
170 B
PHP

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