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