You are here

public function Twig_Cache_Filesystem::__construct in Translation template extractor 7.3

Parameters

$directory string The root cache directory:

$options int A set of options:

File

vendor/Twig/Cache/Filesystem.php, line 28

Class

Twig_Cache_Filesystem
Implements a cache on the filesystem.

Code

public function __construct($directory, $options = 0) {
  $this->directory = $directory;
  $this->options = $options;
}