lookupStorageAdapterPluginManager($container)); StorageFactory::setPluginManager($this->lookupStoragePluginManager($container)); } /** * Lookup the storage adapter plugin manager. * * Returns the Laminas\Cache\Storage\AdapterPluginManager service if present, * or creates a new instance otherwise. * * @param ContainerInterface $container * @return AdapterPluginManager */ private function lookupStorageAdapterPluginManager(ContainerInterface $container) { if ($container->has(AdapterPluginManager::class)) { return $container->get(AdapterPluginManager::class); } return new AdapterPluginManager($container); } /** * Lookup the storage plugins plugin manager. * * Returns the Laminas\Cache\Storage\PluginManager service if present, or * creates a new instance otherwise. * * @param ContainerInterface $container * @return PluginManager */ private function lookupStoragePluginManager(ContainerInterface $container) { if ($container->has(PluginManager::class)) { return $container->get(PluginManager::class); } return new PluginManager($container); } }