getConfigFiles() 공개 메소드

[getConfigFiles description]
public getConfigFiles ( ) : [type]
리턴 [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());
 }