diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-18 16:50:17 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-18 16:50:17 +0200 |
commit | 4a94203492e3b475ee26b65d5992796152c645bd (patch) | |
tree | 1dc90faa67892d53a8af6d87556a6cfd9003b1ca /lib/public/Http/Client/IClientService.php | |
parent | 6231b72e250f275c30228d0738155b78c2333576 (diff) | |
parent | 1d2c1e60ee601ab2d809154968bdfd4f23215e22 (diff) | |
download | nextcloud-server-4a94203492e3b475ee26b65d5992796152c645bd.tar.gz nextcloud-server-4a94203492e3b475ee26b65d5992796152c645bd.zip |
Merge pull request #24706 from owncloud/http_psr4
Move \OCP\Http to PSR-4
Diffstat (limited to 'lib/public/Http/Client/IClientService.php')
-rw-r--r-- | lib/public/Http/Client/IClientService.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/public/Http/Client/IClientService.php b/lib/public/Http/Client/IClientService.php new file mode 100644 index 00000000000..907aa42fd3b --- /dev/null +++ b/lib/public/Http/Client/IClientService.php @@ -0,0 +1,37 @@ +<?php +/** + * @author Lukas Reschke <lukas@owncloud.com> + * @author Morris Jobke <hey@morrisjobke.de> + * + * @copyright Copyright (c) 2016, ownCloud, Inc. + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +namespace OCP\Http\Client; + +/** + * Interface IClientService + * + * @package OCP\Http + * @since 8.1.0 + */ +interface IClientService { + /** + * @return IClient + * @since 8.1.0 + */ + public function newClient(); +} |