silverstripe-framework/src/SilverStripe/Framework/Injector/Factory.php

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 06:15:38 +02: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 18:49:46 +01:00
* @return SS_Object The created service instances.
*/
public function create($service, array $params = array());
}