15 lines
195 B
PHP
15 lines
195 B
PHP
|
<?php
|
||
|
|
||
|
App::uses('CakeErrorController', 'Controller');
|
||
|
|
||
|
class TestAppsErrorController extends CakeErrorController {
|
||
|
|
||
|
public $helpers = array(
|
||
|
'Html',
|
||
|
'Session',
|
||
|
'Form',
|
||
|
'Banana',
|
||
|
);
|
||
|
|
||
|
}
|