| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * @link http://github.com/zendframework/zend-serializer for the canonical source repository
- * @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- namespace Zend\Serializer;
- use Interop\Container\ContainerInterface;
- use Zend\ServiceManager\FactoryInterface;
- use Zend\ServiceManager\ServiceLocatorInterface;
- class AdapterPluginManagerFactory implements FactoryInterface
- {
- /**
- * zend-servicemanager v2 support for invocation options.
- *
- * @param array
- */
- protected $creationOptions;
- /**
- * {@inheritDoc}
- *
- * @return AdapterPluginManager
- */
- public function __invoke(ContainerInterface $container, $name, array $options = null)
- {
- return new AdapterPluginManager($container, $options ?: []);
- }
- /**
- * {@inheritDoc}
- *
- * @return AdapterPluginManager
- */
- public function createService(ServiceLocatorInterface $container, $name = null, $requestedName = null)
- {
- return $this($container, $requestedName ?: AdapterPluginManager::class, $this->creationOptions);
- }
- /**
- * zend-servicemanager v2 support for invocation options.
- *
- * @param array $options
- * @return void
- */
- public function setCreationOptions(array $options)
- {
- $this->creationOptions = $options;
- }
- }
|