Files
yii2/apps/benchmark/protected/controllers/SiteController.php

14 lines
172 B
PHP

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