diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-11-20 13:29:36 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-12-08 16:03:24 +0100 |
commit | f68f67f354a163574c56b55245d3473ebba79cea (patch) | |
tree | 7d61403ce2a8ff410e26d72631d67d5b1d07aac4 /apps/files_sharing/lib | |
parent | fda6ffc866cf8c5d3579fe95d1731ab747894002 (diff) | |
download | nextcloud-server-f68f67f354a163574c56b55245d3473ebba79cea.tar.gz nextcloud-server-f68f67f354a163574c56b55245d3473ebba79cea.zip |
Move remoteId of remote reshares to string
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r-- | apps/files_sharing/lib/External/Manager.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_sharing/lib/External/Manager.php b/apps/files_sharing/lib/External/Manager.php index 87146dd4268..7a2578ef058 100644 --- a/apps/files_sharing/lib/External/Manager.php +++ b/apps/files_sharing/lib/External/Manager.php @@ -126,7 +126,7 @@ class Manager { * @param int $shareType * @param boolean $accepted * @param string $user - * @param int $remoteId + * @param string $remoteId * @param int $parent * @return Mount|null * @throws \Doctrine\DBAL\DBALException @@ -347,7 +347,7 @@ class Manager { * * @param string $remote * @param string $token - * @param int $remoteId Share id on the remote host + * @param string $remoteId Share id on the remote host * @param string $feedback * @return boolean */ @@ -388,7 +388,7 @@ class Manager { * * @param string $remoteDomain * @param string $token - * @param $remoteId id of the share + * @param string $remoteId id of the share * @param string $feedback * @return bool */ |