function MemoryCounterBackendFactory::get
Same name in other branches
- 10 core/lib/Drupal/Core/Cache/MemoryCounterBackendFactory.php \Drupal\Core\Cache\MemoryCounterBackendFactory::get()
- 11.x core/lib/Drupal/Core/Cache/MemoryCounterBackendFactory.php \Drupal\Core\Cache\MemoryCounterBackendFactory::get()
Overrides CacheFactoryInterface::get
File
-
core/
lib/ Drupal/ Core/ Cache/ MemoryCounterBackendFactory.php, line 17
Class
Namespace
Drupal\Core\CacheCode
public function get($bin) {
if (!isset($this->bins[$bin])) {
$this->bins[$bin] = new MemoryCounterBackend();
}
return $this->bins[$bin];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.