1 | <?php |
||
20 | final class ChainFactory extends AbstractAdapterFactory |
||
21 | { |
||
22 | protected static $dependencies = [ |
||
23 | ['requiredClass' => 'Cache\Adapter\Chain\CachePoolChain', 'packageName' => 'cache/chain-adapter'], |
||
24 | ]; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | 1 | public function getAdapter(array $config) |
|
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 3 | protected static function configureOptionResolver(OptionsResolver $resolver) |
|
46 | } |
||
47 |