diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-11-27 18:19:14 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-08 22:29:43 +0100 |
commit | a9e411e076ddbb5525ad44db4cad9efe2efd0fd2 (patch) | |
tree | 9cf256b1bc48a8fd93f4b78d5dde45012971f3ae /lib/private/httphelper.php | |
parent | 719008836d5254c6fa3975c5044d1c6a811bc124 (diff) | |
download | nextcloud-server-a9e411e076ddbb5525ad44db4cad9efe2efd0fd2.tar.gz nextcloud-server-a9e411e076ddbb5525ad44db4cad9efe2efd0fd2.zip |
migrate \OC\AllConfig to \OCP\IConfig
Diffstat (limited to 'lib/private/httphelper.php')
-rw-r--r-- | lib/private/httphelper.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/private/httphelper.php b/lib/private/httphelper.php index dfc1bcf47cd..846825dee8d 100644 --- a/lib/private/httphelper.php +++ b/lib/private/httphelper.php @@ -8,16 +8,18 @@ namespace OC; +use \OCP\IConfig; + class HTTPHelper { const USER_AGENT = 'ownCloud Server Crawler'; - /** @var \OC\AllConfig */ + /** @var \OCP\IConfig */ private $config; /** - * @param \OC\AllConfig $config + * @param \OCP\IConfig $config */ - public function __construct(AllConfig $config) { + public function __construct(IConfig $config) { $this->config = $config; } |