mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-10 02:13:17 +08:00
16 lines
200 B
PHP
16 lines
200 B
PHP
<?php
|
|
|
|
namespace app\controllers;
|
|
|
|
use yii\web\Controller;
|
|
|
|
class SiteController extends Controller
|
|
{
|
|
public $defaultAction = 'hello';
|
|
|
|
public function actionHello()
|
|
{
|
|
return 'hello world';
|
|
}
|
|
}
|