| 1234567891011121314151617181920212223 |
- <?php
- namespace yiiunit\debug\router\controllers;
- use yii\web\Controller;
- class BadController extends Controller
- {
- public function init()
- {
- throw new \Exception('Simulates problem with controller when initialing');
- }
- public function actionOnly()
- {
- return true;
- }
- public function actions()
- {
- return ['test' => 'Something not important'];
- }
- }
|