BadController.php 406 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace yiiunit\debug\router\controllers;
  3. use yii\web\Controller;
  4. class BadController extends Controller
  5. {
  6. public function init()
  7. {
  8. throw new \Exception('Simulates problem with controller when initialing');
  9. }
  10. public function actionOnly()
  11. {
  12. return true;
  13. }
  14. public function actions()
  15. {
  16. return ['test' => 'Something not important'];
  17. }
  18. }