function KeyValueDatabaseFactory::__construct in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Core/KeyValueStore/KeyValueDatabaseFactory.php \Drupal\Core\KeyValueStore\KeyValueDatabaseFactory::__construct()
Constructs this factory object.
Parameters
\Drupal\Component\Serialization\SerializationInterface $serializer: The serialization class to use.
\Drupal\Core\Database\Connection $connection: The Connection object containing the key-value tables.
File
- lib/
Drupal/ Core/ KeyValueStore/ KeyValueDatabaseFactory.php, line 41 - Contains \Drupal\Core\KeyValueStore\KeyValueDatabaseFactory.
Class
- KeyValueDatabaseFactory
- Defines the key/value store factory for the database backend.
Namespace
Drupal\Core\KeyValueStoreCode
function __construct(SerializationInterface $serializer, Connection $connection) {
$this->serializer = $serializer;
$this->connection = $connection;
}