forked from GNUsocial/gnu-social
[COMPOSER] Add new php-ffmpeg package
This commit is contained in:
87
vendor/zendframework/zend-cache/src/PatternPluginManager/PatternPluginManagerV3Polyfill.php
vendored
Normal file
87
vendor/zendframework/zend-cache/src/PatternPluginManager/PatternPluginManagerV3Polyfill.php
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
<?php
|
||||
/**
|
||||
* @see https://github.com/zendframework/zend-cache for the canonical source repository
|
||||
* @copyright Copyright (c) 2018 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license https://github.com/zendframework/zend-cache/blob/master/LICENSE.md New BSD License
|
||||
*/
|
||||
|
||||
namespace Zend\Cache\PatternPluginManager;
|
||||
|
||||
use Zend\Cache\Pattern;
|
||||
use Zend\ServiceManager\AbstractPluginManager;
|
||||
use Zend\ServiceManager\Factory\InvokableFactory;
|
||||
|
||||
/**
|
||||
* zend-servicemanager v3-compatible plugin manager implementation for cache pattern adapters.
|
||||
*
|
||||
* Enforces that retrieved adapters are instances of
|
||||
* Pattern\PatternInterface. Additionally, it registers a number of default
|
||||
* patterns available.
|
||||
*/
|
||||
class PatternPluginManagerV3Polyfill extends AbstractPluginManager
|
||||
{
|
||||
use PatternPluginManagerTrait;
|
||||
|
||||
protected $aliases = [
|
||||
'callback' => Pattern\CallbackCache::class,
|
||||
'Callback' => Pattern\CallbackCache::class,
|
||||
'capture' => Pattern\CaptureCache::class,
|
||||
'Capture' => Pattern\CaptureCache::class,
|
||||
'class' => Pattern\ClassCache::class,
|
||||
'Class' => Pattern\ClassCache::class,
|
||||
'object' => Pattern\ObjectCache::class,
|
||||
'Object' => Pattern\ObjectCache::class,
|
||||
'output' => Pattern\OutputCache::class,
|
||||
'Output' => Pattern\OutputCache::class,
|
||||
];
|
||||
|
||||
protected $factories = [
|
||||
Pattern\CallbackCache::class => InvokableFactory::class,
|
||||
Pattern\CaptureCache::class => InvokableFactory::class,
|
||||
Pattern\ClassCache::class => InvokableFactory::class,
|
||||
Pattern\ObjectCache::class => InvokableFactory::class,
|
||||
Pattern\OutputCache::class => InvokableFactory::class,
|
||||
|
||||
// v2 normalized FQCNs
|
||||
'zendcachepatterncallbackcache' => InvokableFactory::class,
|
||||
'zendcachepatterncapturecache' => InvokableFactory::class,
|
||||
'zendcachepatternclasscache' => InvokableFactory::class,
|
||||
'zendcachepatternobjectcache' => InvokableFactory::class,
|
||||
'zendcachepatternoutputcache' => InvokableFactory::class,
|
||||
];
|
||||
|
||||
/**
|
||||
* Don't share by default
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $shareByDefault = false;
|
||||
|
||||
/**
|
||||
* Don't share by default
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $sharedByDefault = false;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $instanceOf = Pattern\PatternInterface::class;
|
||||
|
||||
/**
|
||||
* Override get to inject options as PatternOptions instance.
|
||||
*
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function get($plugin, array $options = null, $usePeeringServiceManagers = true)
|
||||
{
|
||||
if (empty($options)) {
|
||||
return parent::get($plugin, null, $usePeeringServiceManagers);
|
||||
}
|
||||
|
||||
$plugin = parent::get($plugin, null, $usePeeringServiceManagers);
|
||||
$plugin->setOptions(new Pattern\PatternOptions($options));
|
||||
return $plugin;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user