diff options
author | Julius Härtl <jus@bitgrid.net> | 2023-02-08 20:04:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 20:04:57 +0100 |
commit | 08802ad13f2485f5b8c24dbfe295ce3ad15836c6 (patch) | |
tree | efe6913349b03455de61229f80c467c0288e778b /lib/public | |
parent | 7341d339eb7a1aa20c6b35e8edb40c1cd7946b96 (diff) | |
parent | 9f3dbb699a4e1e0fbfc55e1fb9bb070e26816e20 (diff) | |
download | nextcloud-server-08802ad13f2485f5b8c24dbfe295ce3ad15836c6.tar.gz nextcloud-server-08802ad13f2485f5b8c24dbfe295ce3ad15836c6.zip |
Merge pull request #36566 from nextcloud/mount-find-by-numeric-id
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Files/Mount/IMountPoint.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/Files/Mount/IMountPoint.php b/lib/public/Files/Mount/IMountPoint.php index b8e7ec9118f..1272550d737 100644 --- a/lib/public/Files/Mount/IMountPoint.php +++ b/lib/public/Files/Mount/IMountPoint.php @@ -55,7 +55,7 @@ interface IMountPoint { /** * Get the id of the storages * - * @return string + * @return string|null * @since 8.0.0 */ public function getStorageId(); @@ -63,7 +63,7 @@ interface IMountPoint { /** * Get the id of the storages * - * @return int + * @return int|null * @since 9.1.0 */ public function getNumericStorageId(); |