diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-07-07 12:14:45 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-07-07 12:14:45 +0200 |
commit | 2791b8f00dec7136280e53175285de04f6c8f092 (patch) | |
tree | 9856834214b634a1177ded5b94f46d5a65d1e85d /lib/private/Console | |
parent | e3b509220b5e90646b54490fa081fa53880089e5 (diff) | |
download | nextcloud-server-2791b8f00dec7136280e53175285de04f6c8f092.tar.gz nextcloud-server-2791b8f00dec7136280e53175285de04f6c8f092.zip |
Revert "occ web executor (#24957)"
This reverts commit 854352d9a064a1e469ede207493bce44fd41d96c.
Diffstat (limited to 'lib/private/Console')
-rw-r--r-- | lib/private/Console/Application.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/Console/Application.php b/lib/private/Console/Application.php index 8a9191a4c53..ec91064278e 100644 --- a/lib/private/Console/Application.php +++ b/lib/private/Console/Application.php @@ -138,10 +138,9 @@ class Application { * @throws \Exception */ public function run(InputInterface $input = null, OutputInterface $output = null) { - $args = isset($this->request->server['argv']) ? $this->request->server['argv'] : []; $this->dispatcher->dispatch(ConsoleEvent::EVENT_RUN, new ConsoleEvent( ConsoleEvent::EVENT_RUN, - $args + $this->request->server['argv'] )); return $this->application->run($input, $output); } |