public function PhpBackendFactory::get in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Cache/PhpBackendFactory.php \Drupal\Core\Cache\PhpBackendFactory::get()
- 9 core/lib/Drupal/Core/Cache/PhpBackendFactory.php \Drupal\Core\Cache\PhpBackendFactory::get()
Gets PhpBackend for the specified cache bin.
Parameters
$bin: The cache bin for which the object is created.
Return value
\Drupal\Core\Cache\PhpBackend The cache backend object for the specified cache bin.
File
- core/
lib/ Drupal/ Core/ Cache/ PhpBackendFactory.php, line 33
Class
Namespace
Drupal\Core\CacheCode
public function get($bin) {
return new PhpBackend($bin, $this->checksumProvider);
}