Components_Dependencies_Injector::initConfig PHP 메소드

initConfig() 공개 메소드

Initial configuration setup.
public initConfig ( Components_Config $config ) : null
$config Components_Config The configuration.
리턴 null
    public function initConfig(Components_Config $config)
    {
        $this->setInstance('Components_Config', $config);
    }

Usage Example

예제 #1
0
파일: TestCase.php 프로젝트: horde/horde
 protected function getComponent($directory, $arguments = array(), $options = array())
 {
     $dependencies = new Components_Dependencies_Injector();
     $config = new Components_Stub_Config($arguments, $options);
     $dependencies->initConfig($config);
     $factory = $dependencies->getComponentFactory();
     return new Components_Component_Source($directory, $config, $factory);
 }
All Usage Examples Of Components_Dependencies_Injector::initConfig