From 4b053a9d2d335f365c2dba31424fc02d66429efc Mon Sep 17 00:00:00 2001 From: Basuke Suzuki Date: Fri, 21 Apr 2017 00:25:48 -0700 Subject: [PATCH] bugfix --- Clim/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Clim/App.php b/Clim/App.php index cc5d6e2..1e6d9c7 100644 --- a/Clim/App.php +++ b/Clim/App.php @@ -143,7 +143,7 @@ public function run() /** @var array $argv */ $argv = $this->getContainer()->get('argv'); /** @@var Context $context */ - $context = $this->runner()->run($argv); + $context = $this->runner()->run(array_slice($argv, 1)); return $context; } catch (Exception $e) { $this->handleException($e);