diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-05-26 12:22:05 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-05-26 12:22:05 +0200 |
commit | f1fc7b155c6386ad41800e75472cf9e80d0fefe1 (patch) | |
tree | 6047609979b207ea06a415e57c175cb964bb26f3 /lib/public | |
parent | 23bbf287ff9048f5f539670d950c96dd35807695 (diff) | |
parent | c1f8829590bddef3e495d6045adaa21c573e6924 (diff) | |
download | nextcloud-server-f1fc7b155c6386ad41800e75472cf9e80d0fefe1.tar.gz nextcloud-server-f1fc7b155c6386ad41800e75472cf9e80d0fefe1.zip |
Merge pull request #16515 from owncloud/deprecate-useless-helper-class
Deprecate useless helper class
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/ihelper.php | 2 |
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); } |