diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-09-21 17:56:00 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-09-21 17:56:00 +0200 |
commit | 87e10f9e6a0907adf20538f09159274e6b9ca429 (patch) | |
tree | 821c99e73b518064dc1e8b966e31416babf80fcf /apps | |
parent | 4d556a3ade39f38eb4b2ca3253863e3f86c7c69b (diff) | |
download | nextcloud-server-87e10f9e6a0907adf20538f09159274e6b9ca429.tar.gz nextcloud-server-87e10f9e6a0907adf20538f09159274e6b9ca429.zip |
OC_OCS_Response is deprecated
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/Lib/Api.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/Lib/Api.php b/apps/files_external/lib/Lib/Api.php index 6b10443bbdc..547285a2312 100644 --- a/apps/files_external/lib/Lib/Api.php +++ b/apps/files_external/lib/Lib/Api.php @@ -72,7 +72,7 @@ class Api { * Returns the mount points visible for this user. * * @param array $params - * @return \OC_OCS_Result share information + * @return \OC\OCS\Result share information */ public static function getUserMounts($params) { $entries = array(); @@ -83,6 +83,6 @@ class Api { $entries[] = self::formatMount($mountPoint, $mount); } - return new \OC_OCS_Result($entries); + return new \OC\OCS\Result($entries); } } |