mirror of
https://github.com/brmlab/brmbiolab_sklad.git
synced 2025-06-11 06:33:59 +02:00
13 lines
206 B
PHP
13 lines
206 B
PHP
<?php
|
|
|
|
App::uses('CakeErrorController', 'Controller');
|
|
|
|
class TestConfigsController extends CakeErrorController {
|
|
|
|
public $components = array(
|
|
'RequestHandler' => array(
|
|
'some' => 'config'
|
|
)
|
|
);
|
|
|
|
}
|