2015-03-16 06:28:23 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-01-16 10:41:41 -05:00
|
|
|
declare(strict_types=1);
|
2015-03-16 06:28:23 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2015-03-16 06:28:23 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Http\Client;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface IClientService
|
|
|
|
|
*
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2015-03-16 06:28:23 -04:00
|
|
|
*/
|
|
|
|
|
interface IClientService {
|
|
|
|
|
/**
|
|
|
|
|
* @return IClient
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2015-03-16 06:28:23 -04:00
|
|
|
*/
|
2018-01-16 10:41:41 -05:00
|
|
|
public function newClient(): IClient;
|
2015-03-16 06:28:23 -04:00
|
|
|
}
|