Bolt\Cache::__construct PHP Method

__construct() public method

Cache constructor.
public __construct ( string $directory, string $extension = self::EXTENSION, integer $umask = 2, Bolt\Filesystem\AggregateFilesystemInterface $filesystem = null )
$directory string
$extension string
$umask integer
$filesystem Bolt\Filesystem\AggregateFilesystemInterface
    public function __construct($directory, $extension = self::EXTENSION, $umask = 02, AggregateFilesystemInterface $filesystem = null)
    {
        parent::__construct($directory, $extension, $umask);
        $this->filesystem = $filesystem;
    }