mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-02-08 05:21:14 -05:00
14 lines
206 B
PHP
14 lines
206 B
PHP
<?php
|
|
|
|
App::uses('CakeErrorController', 'Controller');
|
|
|
|
class TestConfigsController extends CakeErrorController {
|
|
|
|
public $components = array(
|
|
'RequestHandler' => array(
|
|
'some' => 'config'
|
|
)
|
|
);
|
|
|
|
}
|