manager->setMountPoint($this->mountPoint, $target); $this->setMountPoint($target); return $result; } /** * Remove the mount points */ public function removeMount(): bool { return $this->manager->removeShare($this->mountPoint); } /** * Get the type of mount point, used to distinguish things like shares and external storage * in the web interface * * @return string */ public function getMountType() { return 'shared'; } }