首页 > 解决方案 > 使用 Zend 插件管理器实现工厂模式

问题描述

该函数createInstance(String $instance) : InstanceInterface{}应返回IntanceInterface. 我不想使用 switch 语句,因为实例太多(不同的类)。虽然一位朋友告诉我 Zend-Framework 3 中的插件管理器。我读到了服务管理器,因为它们似乎是相关的。

https://olegkrivtsov.github.io/using-zend-framework-3-book/html/en/Website_Operation/Plugin_Managers.html

代替插件管理器,服务管理器有很好的文档和描述。

我认为我以错误的方式实现它,因为我收到一个 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

实例工厂

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 工厂)

class InstanceFactoryFactory implements FactoryInterface
{

    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
    {
        $instancePluginManager = $container->get(InstancePluginManager::class);

        return new InstanceFactory($instancePluginManager);
    }
}

模块.config.php

return [
'service_manager' => [
        'factories' => [
InstanceFactory::class => InstanceFactoryFactory::class,
InstancePluginManager::class => InvokableFactory::class,

],
],
];

标签: phpzend-framework3

解决方案


改变

InstancePluginManager::class => InvokableFactory::class

InstancePluginManager::class => function (ContainerInterface $container, $requestedName) {
    return new InstancePluginManager($container);
}

InvokableFactory 正在尝试创建不带参数的 InstancePluginManager。


推荐阅读