Welcome to mirror list, hosted at ThFree Co, Russian Federation.

iclientservice.php « client « http « public « lib - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4dc65f1721eee1a76ed7adbcaba15dba55ec33f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Copyright (c) 2015 Lukas Reschke <lukas@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace OCP\Http\Client;

/**
 * Interface IClientService
 *
 * @package OCP\Http
 */
interface IClientService {
	/**
	 * @return IClient
	 */
	public function newClient();
}