nextcloud/lib/public/Http/Client/IClientService.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
406 B
PHP
Raw Normal View History

2015-03-16 06:28:23 -04:00
<?php
declare(strict_types=1);
2015-03-16 06:28:23 -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
*
* @since 8.1.0
2015-03-16 06:28:23 -04:00
*/
interface IClientService {
/**
* @return IClient
* @since 8.1.0
2015-03-16 06:28:23 -04:00
*/
public function newClient(): IClient;
2015-03-16 06:28:23 -04:00
}