mirror of
https://github.com/brmlab/brmsklad.git
synced 2025-08-03 14:43:49 +02:00
14 lines
195 B
PHP
14 lines
195 B
PHP
<?php
|
|
|
|
App::uses('CakeErrorController', 'Controller');
|
|
|
|
class TestAppsErrorController extends CakeErrorController {
|
|
|
|
public $helpers = array(
|
|
'Html',
|
|
'Session',
|
|
'Form',
|
|
'Banana',
|
|
);
|
|
|
|
}
|