summaryrefslogtreecommitdiffstats
path: root/tests/mocks/ci_testconfig.php
blob: afdb71001c35d5a81a16725f9b5ab65a57c7a46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

class CI_TestConfig extends CI_Config {

	public $config = array();
	public $_config_paths = array(APPPATH);
	public $loaded = array();

	public function item($key, $index = '')
	{
		return isset($this->config[$key]) ? $this->config[$key] : FALSE;
	}

	public function load($file = '', $use_sections = FALSE, $fail_gracefully = FALSE)
	{
		$this->loaded[] = $file;
		return TRUE;
	}

}