Returns a sorted list of mount point * @since 8.2.0 */ public function findIn(string $path): array; /** * Remove all registered mounts * * @since 8.2.0 */ public function clear(); /** * Find mounts by storage id * * @param string $id * @return IMountPoint[] * @since 8.2.0 */ public function findByStorageId(string $id): array; /** * @return IMountPoint[] * @since 8.2.0 */ public function getAll(): array; /** * Find mounts by numeric storage id * * @param int $id * @return IMountPoint[] * @since 8.2.0 */ public function findByNumericId(int $id): array; /** * Return the mount matching a cached mount info (or mount file info) * * @param ICachedMountInfo $info * * @return IMountPoint|null * @since 28.0.0 */ public function getMountFromMountInfo(ICachedMountInfo $info): ?IMountPoint; }