Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-03-24 17:47:19 +0300
committerRobin Appelman <robin@icewind.nl>2022-03-24 19:04:01 +0300
commit63ad99ba4ad6e4365bbaa0bd500cd870bd853201 (patch)
tree72e33a39b231848eadb5e8589c0d2826b32c3951 /lib/public/Files/Config
parentf7c942a9436022bd14373ee9706c5a72bce021e9 (diff)
fix method name
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/Files/Config')
-rw-r--r--lib/public/Files/Config/IUserMountCache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Files/Config/IUserMountCache.php b/lib/public/Files/Config/IUserMountCache.php
index e1cf87563a2..4411200c7ae 100644
--- a/lib/public/Files/Config/IUserMountCache.php
+++ b/lib/public/Files/Config/IUserMountCache.php
@@ -148,5 +148,5 @@ interface IUserMountCache {
* @throws NotFoundException
* @since 24.0.0
*/
- public function getMountsInForPath(IUser $user, string $path): array;
+ public function getMountsInPath(IUser $user, string $path): array;
}