IUserApi.php 388 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\Remote\Api;
  7. use OCP\Remote\IUser;
  8. /**
  9. * @since 13.0.0
  10. * @deprecated 23.0.0
  11. */
  12. interface IUserApi {
  13. /**
  14. * @param string $userId
  15. * @return IUser
  16. *
  17. * @since 13.0.0
  18. * @deprecated 23.0.0
  19. */
  20. public function getUser($userId);
  21. }