You are here

public function FilesystemCache::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php \Doctrine\Common\Cache\FilesystemCache::__construct()

Constructor.

Parameters

string $directory The cache directory.:

string $extension The cache file extension.:

Throws

\InvalidArgumentException

Overrides FileCache::__construct

File

vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php, line 35

Class

FilesystemCache
Filesystem cache driver.

Namespace

Doctrine\Common\Cache

Code

public function __construct($directory, $extension = self::EXTENSION, $umask = 02) {
  parent::__construct($directory, $extension, $umask);
}