KeyValueFactory.php in Service Container 7
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\service_container\KeyValueStoreFile
src/KeyValueStore/KeyValueFactory.phpView source
<?php
/**
* @file
* Contains \Drupal\service_container\KeyValueStore\KeyValueFactory.
*/
namespace Drupal\service_container\KeyValueStore;
use Drupal\Core\KeyValueStore\KeyValueFactory as BaseKeyValueFactory;
use Drupal\service_container\DependencyInjection\ContainerInterface;
/**
* Overrides the core KV factory to use the 'service_container' container.
*
* @codeCoverageIgnore
*/
class KeyValueFactory extends BaseKeyValueFactory {
}
Classes
Name | Description |
---|---|
KeyValueFactory | Overrides the core KV factory to use the 'service_container' container. |