aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Config/MountProviderCollection.php
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-09-06 09:44:04 +0200
committerprovokateurin <kate@provokateurin.de>2024-09-09 11:09:37 +0200
commit007be83a968e6aee649ff8de173163cb5ef93a86 (patch)
tree18e03c4a5562989bbd6482e9e6a47f3619b71e30 /lib/private/Files/Config/MountProviderCollection.php
parentfc10fa592626d154a91d77d35c93beabdc7605c1 (diff)
downloadnextcloud-server-fix/oc/inheritdoc.tar.gz
nextcloud-server-fix/oc/inheritdoc.zip
fix(OC): Remove doc blocks for OCP implementationsfix/oc/inheritdoc
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/private/Files/Config/MountProviderCollection.php')
-rw-r--r--lib/private/Files/Config/MountProviderCollection.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/private/Files/Config/MountProviderCollection.php b/lib/private/Files/Config/MountProviderCollection.php
index 1dbc469c8c3..36e19854e46 100644
--- a/lib/private/Files/Config/MountProviderCollection.php
+++ b/lib/private/Files/Config/MountProviderCollection.php
@@ -138,13 +138,6 @@ class MountProviderCollection implements IMountProviderCollection, Emitter {
return array_merge($lateMounts, $firstMounts);
}
- /**
- * Get the configured home mount for this user
- *
- * @param \OCP\IUser $user
- * @return \OCP\Files\Mount\IMountPoint
- * @since 9.1.0
- */
public function getHomeMountForUser(IUser $user) {
/** @var \OCP\Files\Config\IHomeMountProvider[] $providers */
$providers = array_reverse($this->homeProviders); // call the latest registered provider first to give apps an opportunity to overwrite builtin
@@ -157,11 +150,6 @@ class MountProviderCollection implements IMountProviderCollection, Emitter {
throw new \Exception('No home storage configured for user ' . $user);
}
- /**
- * Add a provider for mount points
- *
- * @param \OCP\Files\Config\IMountProvider $provider
- */
public function registerProvider(IMountProvider $provider) {
$this->providers[] = $provider;
@@ -183,22 +171,11 @@ class MountProviderCollection implements IMountProviderCollection, Emitter {
});
}
- /**
- * Add a provider for home mount points
- *
- * @param \OCP\Files\Config\IHomeMountProvider $provider
- * @since 9.1.0
- */
public function registerHomeProvider(IHomeMountProvider $provider) {
$this->homeProviders[] = $provider;
$this->emit('\OC\Files\Config', 'registerHomeMountProvider', [$provider]);
}
- /**
- * Get the mount cache which can be used to search for mounts without setting up the filesystem
- *
- * @return IUserMountCache
- */
public function getMountCache() {
return $this->mountCache;
}
@@ -207,12 +184,6 @@ class MountProviderCollection implements IMountProviderCollection, Emitter {
$this->rootProviders[] = $provider;
}
- /**
- * Get all root mountpoints
- *
- * @return \OCP\Files\Mount\IMountPoint[]
- * @since 20.0.0
- */
public function getRootMounts(): array {
$loader = $this->loader;
$mounts = array_map(function (IRootMountProvider $provider) use ($loader) {