mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-09 09:47:25 +08:00
16 lines
218 B
PHP
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';
|
|
}
|
|
}
|