silverstripe-framework/src/Core/Injector/ServiceConfigurationLocator.php

21 lines
368 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Core\Injector;
/**
2014-08-15 08:53:05 +02:00
* Used to locate configuration for a particular named service.
*
* If it isn't found, return null.
*/
2016-11-29 00:31:16 +01:00
interface ServiceConfigurationLocator
{
2015-09-28 11:21:08 +02:00
2016-11-29 00:31:16 +01:00
/**
* Finds the Injector config for a named service.
*
* @param string $name
* @return mixed
*/
public function locateConfigFor($name);
}