storage = $storage;
$this->path = $path;
$this->fileId = $fileId;
$this->storageId = $storageId;
}
/**
* @return IStorage
* @since 22.0.0
*/
public function getStorage(): IStorage {
return $this->storage;
}
/**
* @return string
* @since 22.0.0
*/
public function getPath(): string {
return $this->path;
}
/**
* @param string $path
* @since 22.0.0
*/
public function setPath(string $path): void {
$this->path = $path;
}
/**
* @return int
* @since 22.0.0
*/
public function getFileId(): int {
return $this->fileId;
}
/**
* @return int
* @since 22.0.0
*/
public function getStorageId(): int {
return $this->storageId;
}
}
dav-itip-broker
blob: 4f779e8c69793377f26afc502039838d4b3d8113 (
plain)