You are here

Storage.php in MongoDB 8.2

File

modules/mongodb_storage/src/Storage.php
View source
<?php

declare (strict_types=1);
namespace Drupal\mongodb_storage;


/**
 * Class MongoDb contains constants usable by all modules using the storage.
 */
class Storage {
  const MODULE = 'mongodb_storage';
  const SERVICE_KV = 'keyvalue.mongodb';
  const SERVICE_KVE = 'keyvalue.expirable.mongodb';
  const SERVICE_SQL_IMPORT = 'mongodb.storage.sql_import';

}

Classes

Namesort descending Description
Storage Class MongoDb contains constants usable by all modules using the storage.