]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix method name
authorRobin Appelman <robin@icewind.nl>
Thu, 24 Mar 2022 14:47:19 +0000 (15:47 +0100)
committerRobin Appelman <robin@icewind.nl>
Thu, 24 Mar 2022 16:04:01 +0000 (17:04 +0100)
Signed-off-by: Robin Appelman <robin@icewind.nl>
lib/private/Files/Config/UserMountCache.php
lib/public/Files/Config/IUserMountCache.php

index 6537d07393e12abe6d8c490922b043ae70b86478..4df8245cef23e3fbb3e8effbe5db46c32769252f 100644 (file)
@@ -477,7 +477,7 @@ class UserMountCache implements IUserMountCache {
                throw new NotFoundException("No cached mount for path " . $path);
        }
 
-       public function getMountsInForPath(IUser $user, string $path): array {
+       public function getMountsInPath(IUser $user, string $path): array {
                $path = rtrim($path, '/') . '/';
                $mounts = $this->getMountsForUser($user);
                return array_filter($mounts, function (ICachedMountInfo $mount) use ($path) {
index e1cf87563a22e208e3fb37733569c1b9820e4230..4411200c7ae7b43966a3b53cfc9e7dd0fadbc03c 100644 (file)
@@ -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;
 }