本文整理汇总了PHP中ConfigFactory::salvage方法的典型用法代码示例。如果您正苦于以下问题:PHP ConfigFactory::salvage方法的具体用法?PHP ConfigFactory::salvage怎么用?PHP ConfigFactory::salvage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConfigFactory
的用法示例。
在下文中一共展示了ConfigFactory::salvage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testSalvage
/**
* @covers ConfigFactory::register
*/
public function testSalvage()
{
$oldFactory = new ConfigFactory();
$oldFactory->register('foo', 'GlobalVarConfig::newInstance');
$oldFactory->register('bar', 'GlobalVarConfig::newInstance');
$oldFactory->register('quux', 'GlobalVarConfig::newInstance');
// instantiate two of the three defined configurations
$foo = $oldFactory->makeConfig('foo');
$bar = $oldFactory->makeConfig('bar');
$quux = $oldFactory->makeConfig('quux');
// define new config instance
$newFactory = new ConfigFactory();
$newFactory->register('foo', 'GlobalVarConfig::newInstance');
$newFactory->register('bar', function () {
return new HashConfig();
});
// "foo" and "quux" are defined in the old and the new factory.
// The old factory has instances for "foo" and "bar", but not "quux".
$newFactory->salvage($oldFactory);
$newFoo = $newFactory->makeConfig('foo');
$this->assertSame($foo, $newFoo, 'existing instance should be salvaged');
$newBar = $newFactory->makeConfig('bar');
$this->assertNotSame($bar, $newBar, 'don\'t salvage if callbacks differ');
// the new factory doesn't have quux defined, so the quux instance should not be salvaged
$this->setExpectedException('ConfigException');
$newFactory->makeConfig('quux');
}