summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-05-21 23:35:37 +0200
committerLukas Reschke <lukas@owncloud.com>2015-05-21 23:35:37 +0200
commitc1f8829590bddef3e495d6045adaa21c573e6924 (patch)
treebb3b91413c76e4df34177553c50481e3822b07f6 /lib/public
parentf9784745776eda5caedbbc72cf516ae70bce6f6a (diff)
downloadnextcloud-server-c1f8829590bddef3e495d6045adaa21c573e6924.tar.gz
nextcloud-server-c1f8829590bddef3e495d6045adaa21c573e6924.zip
Deprecate useless helper class
The helper class has no real reason anymore with 8.1.0 as we now have better public APIs. No need for an `IHelper` class like that from my opinion.
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/ihelper.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/ihelper.php b/lib/public/ihelper.php
index a42dbf5ec61..41fe3f57c0a 100644
--- a/lib/public/ihelper.php
+++ b/lib/public/ihelper.php
@@ -33,6 +33,7 @@ namespace OCP;
/**
* Functions that don't have any specific interface to place
* @since 6.0.0
+ * @deprecated 8.1.0
*/
interface IHelper {
/**
@@ -41,6 +42,7 @@ interface IHelper {
* @param string $url the url that should be fetched
* @return string the content of the webpage
* @since 6.0.0
+ * @deprecated 8.1.0 Use \OCP\IServerContainer::getHTTPClientService
*/
public function getUrlContent($url);
}