| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace yiiunit\debug\router\controllers;
- use yii\web\Controller;
- class WebController extends Controller
- {
- public function actions()
- {
- return [
- 'error' => [
- 'class' => 'yii\web\ErrorAction',
- ],
- 'errorStraight' => 'yii\web\ErrorAction',
- ];
- }
- public function actionFirst()
- {
- return true;
- }
- public function actionSecond()
- {
- return true;
- }
- public function someMethod()
- {
- return true;
- }
- }
|