函数createInstance(String $instance) : InstanceInterface{}应该返回IntanceInterface的一个实例。我不想使用switch语句,因为有太多的实例(不同的类)。虽然一个朋友告诉我Zend-Framework3中的插件管理器,但我读到了服务管理器,因为它们似乎是相关的。
与插件管理器不同,Service Manager有很好的文档记录和描述。
我想我实现它的方式是错误的,因为我得到了一个php错误:
Deprecated: Zend\ServiceManager\AbstractPluginManager::__construct now expects a Interop\Container\ContainerInterface instance representing the parent container; please update your code in /website/admin/vendor/zendframework/zend-servicemanager/src/AbstractPluginManager.php on line 85
Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time in /website/admin/vendor/zendframework/zend-session/src/Config/SessionConfig.php on line 148
InstanceFactory
protected $instancePluginManager;
public function __construct(InstancePluginManager $instacePluginManager)
{
$this->instancePluginManager = $instancePluginManager;
}
public function createInstance(string $instance) :InstanceInterface
{
$this->instacePluginManager->get($instance);
}InstancePluginManager
class InstancePluginManager extends AbstractPluginManager
{
protected $instanceOf = InstanceInterface::class;
/**
* @var string[]|callable[] Default factories
*/
protected $factories = [
A::class => InvokableFactory::class,
B::class => InvokableFactory::class,
C::class => InvokableFactory::class,
D::class => InvokableFactory::class,
E::class => InvokableFactory::class,
F::class => InvokableFactory::class,
G::class => InvokableFactory::class,
H::class => InvokableFactory::class,
I::class => InvokableFactory::class,
J::class => InvokableFactory::class,
];
public function validate($instance)
{
if (! $instance instanceof $this->instanceOf) {
throw new InvalidServiceException(sprintf(
'Chart of type "%s" is invalid; must implement %s',
(is_object($instance) ? get_class($instance) : gettype($instance)),
$this->instanceOf
));
}
}
}InstanceFactoryFactory (Zend Factory)
class InstanceFactoryFactory implements FactoryInterface
{
public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
{
$instancePluginManager = $container->get(InstancePluginManager::class);
return new InstanceFactory($instancePluginManager);
}
}module.config.php
return [
'service_manager' => [
'factories' => [
InstanceFactory::class => InstanceFactoryFactory::class,
InstancePluginManager::class => InvokableFactory::class,
],
],
];发布于 2019-05-03 06:29:30
变化
InstancePluginManager::class => InvokableFactory::class至
InstancePluginManager::class => function (ContainerInterface $container, $requestedName) {
return new InstancePluginManager($container);
}InvokableFactory正在尝试创建不带参数的InstancePluginManager。
https://stackoverflow.com/questions/55907804
复制相似问题