getConfigFiles() public method

[getConfigFiles description]
public getConfigFiles ( ) : [type]
return [type]
示例#1
0
 public function testGetConfigFIles()
 {
     $container = new Container();
     $container->setConfigFile("home", "path/to/config.php");
     $container->setConfigFile("default", "path/to/default/config.php");
     $this->assertEquals(array("home" => "path/to/config.php", "default" => "path/to/default/config.php"), $container->getConfigFiles());
 }