From 3ded331bd134169efd6f11a55de83bea30a44221 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 20 Nov 2015 19:45:15 +0100 Subject: [PATCH] Revert "WebCommand::serveAction(): make arguments non-positional" This reverts commit d101e852ce7a0c75da449f5db02cf73d3ea7f50f. Sorry for doing so, but we have to fix this without breaking compatibility. --- application/clicommands/WebCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/clicommands/WebCommand.php b/application/clicommands/WebCommand.php index 1b6b17dd8..253f0f3ad 100644 --- a/application/clicommands/WebCommand.php +++ b/application/clicommands/WebCommand.php @@ -38,8 +38,8 @@ class WebCommand extends Command } $fork = $this->params->get('daemonize'); - $documentRoot = $this->params->shift('document-root'); - $socket = $this->params->shift('listen-addr'); + $documentRoot = $this->params->shift(); + $socket = $this->params->shift(); // TODO: Sanity check!! if ($socket === null) {