TestAppsErrorController.php 195 B

1234567891011121314
  1. <?php
  2. App::uses('CakeErrorController', 'Controller');
  3. class TestAppsErrorController extends CakeErrorController {
  4. public $helpers = array(
  5. 'Html',
  6. 'Session',
  7. 'Form',
  8. 'Banana',
  9. );
  10. }