Example #1
0
 /**
  * Constructor
  *
  * @param string $path on-disk path.
  * @param array $acl ACL rules.
  * @param string|null $owner principal owner string.
  */
 function __construct($path, array $acl, $owner = null)
 {
     parent::__construct($path);
     $this->acl = $acl;
     $this->owner = $owner;
 }
Example #2
0
 public function delete()
 {
     $this->initPath();
     parent::delete();
     $this->updateQuota();
 }