public function FilesystemCache::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\CacheCode
public function __construct($directory, $extension = self::EXTENSION, $umask = 02) {
parent::__construct($directory, $extension, $umask);
}