dchill42 | 7ecc5cd | 2012-10-12 16:25:51 -0400 | [diff] [blame] | 1 | <?php |
2 | |||||
3 | class CI_TestConfig { | ||||
4 | |||||
5 | public $config = array(); | ||||
6 | public $_config_paths = array(APPPATH); | ||||
7 | |||||
8 | public function item($key) | ||||
9 | { | ||||
10 | return isset($this->config[$key]) ? $this->config[$key] : FALSE; | ||||
11 | } | ||||
12 | |||||
13 | public function load($arg1, $arg2, $arg3) | ||||
14 | { | ||||
15 | return TRUE; | ||||
16 | } | ||||
17 | |||||
18 | } |