1
0

IInstanceFactory.php 371 B

123456789101112131415161718192021
  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;
  7. /**
  8. * @since 13.0.0
  9. * @deprecated 23.0.0
  10. */
  11. interface IInstanceFactory {
  12. /**
  13. * @param string $url
  14. * @return IInstance
  15. *
  16. * @since 13.0.0
  17. * @deprecated 23.0.0
  18. */
  19. public function getInstance($url);
  20. }