blob: eb318ddeb800132e3ff5bb050fc99f95c37870aa [file] [log] [blame]
dchill427ecc5cd2012-10-12 16:25:51 -04001<?php
2
3class 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}