23 lines
465 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Framework\Injector;
/**
* A factory which is used for creating service instances.
2015-08-24 16:15:38 +12:00
*
* @package framework
* @subpackage injector
*/
interface Factory {
/**
* Creates a new service instance.
*
* @param string $service The class name of the service.
* @param array $params The constructor parameters.
2017-11-30 17:49:46 +00:00
* @return SS_Object The created service instances.
*/
public function create($service, array $params = array());
}