silverstripe-framework/Core/Injector/InjectionCreator.php

23 lines
397 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Core\Injector;
use ReflectionClass;
/**
* A class for creating new objects by the injector.
*/
class InjectionCreator implements Factory {
public function create($class, array $params = array()) {
$reflector = new ReflectionClass($class);
if (count($params)) {
2014-08-15 08:53:05 +02:00
return $reflector->newInstanceArgs($params);
}
2014-08-15 08:53:05 +02:00
return $reflector->newInstance();
}
}