yiisoft / yii2-app-advanced

Yii 2.0 Advanced Application Template
http://www.yiiframework.com
BSD 3-Clause "New" or "Revised" License
1.66k stars 1.28k forks source link

Controllers #564

Closed tomleejumah closed 5 months ago

tomleejumah commented 5 months ago

Just added a new controller: <?php namespace backend\controllers;

use yii\web\Controller;

class HelloController extends Controller { public function actionIndex() { return "Hello World"; } }