class DatabaseBackendFactory

Hierarchy

Expanded class hierarchy of DatabaseBackendFactory

1 string reference to 'DatabaseBackendFactory'
core.services.yml in drupal/core/core.services.yml
drupal/core/core.services.yml
1 service uses DatabaseBackendFactory

File

drupal/core/lib/Drupal/Core/Cache/DatabaseBackendFactory.php, line 12
Contains \Drupal\Core\Cache\DatabaseBackendFactory.

Namespace

Drupal\Core\Cache
View source
class DatabaseBackendFactory {

  /**
   * The database connection.
   *
   * @var \Drupal\Core\Database\Connection
   */
  protected $connection;

  /**
   * Constructs the DatabaseBackendFactory object.
   *
   * @param \Drupal\Core\Database\Connection $connection
   */
  function __construct(Connection $connection) {
    $this->connection = $connection;
  }

  /**
   * Gets DatabaseBackend for the specified cache bin.
   *
   * @param $bin
   *   The cache bin for which the object is created.
   *
   * @return \Drupal\Core\Cache\DatabaseBackend
   *   The cache backend object for the specified cache bin.
   */
  function get($bin) {
    return new DatabaseBackend($this->connection, $bin);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DatabaseBackendFactory::$connection protected property The database connection.
DatabaseBackendFactory::get function Gets DatabaseBackend for the specified cache bin.
DatabaseBackendFactory::__construct function Constructs the DatabaseBackendFactory object.