diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-04-19 12:19:39 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-04-22 08:38:41 +0200 |
commit | d0030aad6cb108bbf4ca729d0e11f3438145aba9 (patch) | |
tree | b67c516648a5aaced4598e889c93f85db3adb957 /core/register_command.php | |
parent | ded84bf571dd51798904823405f673e16ca5eff4 (diff) | |
download | nextcloud-server-d0030aad6cb108bbf4ca729d0e11f3438145aba9.tar.gz nextcloud-server-d0030aad6cb108bbf4ca729d0e11f3438145aba9.zip |
Remove deprecated HTTPHelper from InfoParser
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/register_command.php b/core/register_command.php index 90a54233e66..0b1a019f993 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -32,7 +32,7 @@ /** @var $application Symfony\Component\Console\Application */ $application->add(new OC\Core\Command\Status); $application->add(new OC\Core\Command\Check(\OC::$server->getConfig())); -$infoParser = new \OC\App\InfoParser(\OC::$server->getHTTPHelper(), \OC::$server->getURLGenerator()); +$infoParser = new \OC\App\InfoParser(\OC::$server->getURLGenerator()); $application->add(new OC\Core\Command\App\CheckCode($infoParser)); $application->add(new OC\Core\Command\L10n\CreateJs()); $application->add(new \OC\Core\Command\Integrity\SignApp( |