summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/apphelper.php4
-rw-r--r--lib/public/ihelper.php2
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/private/apphelper.php b/lib/private/apphelper.php
index 5da080ad16c..c4ddc1b077e 100644
--- a/lib/private/apphelper.php
+++ b/lib/private/apphelper.php
@@ -23,7 +23,8 @@
namespace OC;
/**
- * TODO: Description
+ * Class AppHelper
+ * @deprecated 8.1.0
*/
class AppHelper implements \OCP\IHelper {
/**
@@ -31,6 +32,7 @@ class AppHelper implements \OCP\IHelper {
* installed
* @param string $url the url that should be fetched
* @return string the content of the webpage
+ * @deprecated 8.1.0 Use \OCP\IServerContainer::getHTTPClientService
*/
public function getUrlContent($url) {
return \OC_Util::getUrlContent($url);
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);
}