DatabaseBackendFactory::get($bin)
Gets DatabaseBackend for the specified cache bin.
Parameters
$bin: The cache bin for which the object is created.
Return value
\Drupal\Core\Cache\DatabaseBackend The cache backend object for the specified cache bin.
Overrides CacheFactoryInterface::get
File
- core/lib/Drupal/Core/Cache/DatabaseBackendFactory.php, line 45
Class
Namespace
Drupal\Core\Cache
Code
1 2 3 | function get( $bin ) { return new DatabaseBackend( $this ->connection, $this ->checksumProvider, $bin ); } |
Please login to continue.