/**
  * @param \OC\Files\Cache\Cache $cache
  * @param int $mask
  */
 public function __construct($cache, $mask)
 {
     parent::__construct($cache);
     $this->mask = $mask;
 }
Example #2
0
 /**
  * @param \OC\Files\Cache\Cache $cache
  * @param string $root
  */
 public function __construct($cache, $root)
 {
     parent::__construct($cache);
     $this->root = $root;
 }