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