MemoryBackendFactory.php
Same filename in other branches
Namespace
Drupal\Core\CacheFile
-
core/
lib/ Drupal/ Core/ Cache/ MemoryBackendFactory.php
View source
<?php
namespace Drupal\Core\Cache;
use Drupal\Component\Datetime\TimeInterface;
class MemoryBackendFactory implements CacheFactoryInterface {
/**
* Instantiated memory cache bins.
*
* @var \Drupal\Core\Cache\MemoryBackend[]
*/
protected $bins = [];
/**
* Constructs a MemoryBackendFactory object.
*
* @param \Drupal\Component\Datetime\TimeInterface $time
* The time service.
*/
public function __construct(TimeInterface $time) {
}
/**
* {@inheritdoc}
*/
public function get($bin) {
if (!isset($this->bins[$bin])) {
$this->bins[$bin] = new MemoryBackend($this->time);
}
return $this->bins[$bin];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
MemoryBackendFactory |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.