silverstripe-framework/tests/php/Core/Injector/InjectorTest/InjectorTestConfigLocator.php
2017-02-27 16:54:01 +13:00

33 lines
913 B
PHP

<?php
namespace SilverStripe\Core\Tests\Injector\InjectorTest;
use SilverStripe\Core\Injector\SilverStripeServiceConfigurationLocator;
use SilverStripe\Dev\TestOnly;
class InjectorTestConfigLocator extends SilverStripeServiceConfigurationLocator implements TestOnly
{
protected function configFor($name)
{
switch ($name) {
case TestObject::class:
return $this->configs[$name] = array(
'class' => ConstructableObject::class,
'constructor' => array(
'%$'.OtherTestObject::class
)
);
case 'ConfigConstructor':
return $this->configs[$name] = array(
'class' => ConstructableObject::class,
'constructor' => array('value')
);
}
return parent::configFor($name);
}
}