TestAppsErrorController.php 214 B

12345678910111213
  1. <?php
  2. namespace TestApp\Controller;
  3. use Cake\Controller\ErrorController;
  4. class TestAppsErrorController extends ErrorController
  5. {
  6. public $helpers = [
  7. 'Html',
  8. 'Form',
  9. 'Banana',
  10. ];
  11. }