You are here

public function ApcuBackendFactory::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Cache/ApcuBackendFactory.php \Drupal\Core\Cache\ApcuBackendFactory::__construct()

Constructs an ApcuBackendFactory object.

Parameters

string $root: The app root.

string $site_path: The site path.

\Drupal\Core\Cache\CacheTagsChecksumInterface $checksum_provider: The cache tags checksum provider.

File

core/lib/Drupal/Core/Cache/ApcuBackendFactory.php, line 38
Contains \Drupal\Core\Cache\ApcuBackendFactory.

Class

ApcuBackendFactory

Namespace

Drupal\Core\Cache

Code

public function __construct($root, $site_path, CacheTagsChecksumInterface $checksum_provider) {
  $this->sitePrefix = Settings::getApcuPrefix('apcu_backend', $root, $site_path);
  $this->checksumProvider = $checksum_provider;
}