diff options
Diffstat (limited to 'lib/public/Remote/Api/IUserApi.php')
-rw-r--r-- | lib/public/Remote/Api/IUserApi.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/public/Remote/Api/IUserApi.php b/lib/public/Remote/Api/IUserApi.php new file mode 100644 index 00000000000..268594c0340 --- /dev/null +++ b/lib/public/Remote/Api/IUserApi.php @@ -0,0 +1,24 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCP\Remote\Api; + +use OCP\Remote\IUser; + +/** + * @since 13.0.0 + * @deprecated 23.0.0 + */ +interface IUserApi { + /** + * @param string $userId + * @return IUser + * + * @since 13.0.0 + * @deprecated 23.0.0 + */ + public function getUser($userId); +} |