diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-05-21 23:35:37 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-05-21 23:35:37 +0200 |
commit | c1f8829590bddef3e495d6045adaa21c573e6924 (patch) | |
tree | bb3b91413c76e4df34177553c50481e3822b07f6 /lib/private/apphelper.php | |
parent | f9784745776eda5caedbbc72cf516ae70bce6f6a (diff) | |
download | nextcloud-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/private/apphelper.php')
-rw-r--r-- | lib/private/apphelper.php | 4 |
1 files changed, 3 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); |