Issue #2508071 by Pol, mgifford, quietone: Add missing declaration property $options in KeyValueFactory

merge-requests/415/head
catch 2021-03-11 14:40:17 +00:00
parent 13f1debaef
commit 32f43424b9
1 changed files with 9 additions and 0 deletions

View File

@ -40,10 +40,19 @@ class KeyValueFactory implements KeyValueFactoryInterface {
protected $stores = []; protected $stores = [];
/** /**
* The service container.
*
* @var \Symfony\Component\DependencyInjection\ContainerInterface * @var \Symfony\Component\DependencyInjection\ContainerInterface
*/ */
protected $container; protected $container;
/**
* Collection-specific storage override options.
*
* @var array
*/
protected $options;
/** /**
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container * @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* The service container. * The service container.