public function PhpFileCache::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/cache/lib/Doctrine/Common/Cache/PhpFileCache.php \Doctrine\Common\Cache\PhpFileCache::__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/ PhpFileCache.php, line 35
Class
- PhpFileCache
- Php file cache driver.
Namespace
Doctrine\Common\CacheCode
public function __construct($directory, $extension = self::EXTENSION, $umask = 02) {
parent::__construct($directory, $extension, $umask);
}