1 | <?php |
||
10 | class SilverStripeServiceConfigurationLocator extends ServiceConfigurationLocator { |
||
11 | |||
12 | /** |
||
13 | * List of Injector configurations cached from Config in class => config format. |
||
14 | * If any config is false, this denotes that this class and all its parents |
||
15 | * have no configuration specified. |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $configs = array(); |
||
20 | |||
21 | public function locateConfigFor($name) { |
||
37 | |||
38 | /** |
||
39 | * Retrieves the config for a named service without performing a hierarchy walk |
||
40 | * |
||
41 | * @param string $name Name of service |
||
42 | * @return mixed Get config for this service |
||
43 | */ |
||
44 | protected function configFor($name) { |
||
54 | } |
||
55 |