silverstripe-framework/src/Core/Injector/Factory.php
2016-11-29 12:31:16 +13:00

20 lines
431 B
PHP

<?php
namespace SilverStripe\Core\Injector;
/**
* A factory which is used for creating service instances.
*/
interface Factory
{
/**
* Creates a new service instance.
*
* @param string $service The class name of the service.
* @param array $params The constructor parameters.
* @return object The created service instances.
*/
public function create($service, array $params = array());
}