IClientService.php 406 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  6. * SPDX-License-Identifier: AGPL-3.0-only
  7. */
  8. namespace OCP\Http\Client;
  9. /**
  10. * Interface IClientService
  11. *
  12. * @since 8.1.0
  13. */
  14. interface IClientService {
  15. /**
  16. * @return IClient
  17. * @since 8.1.0
  18. */
  19. public function newClient(): IClient;
  20. }