From 5b19c892cff52d8d50bcd4b1397cff8972acb9df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Simon?= Date: Thu, 28 Feb 2013 17:44:20 +0100 Subject: [PATCH] [Console] fixed unparsed StringInput tokens --- src/Symfony/Component/Console/Input/ArgvInput.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/Console/Input/ArgvInput.php b/src/Symfony/Component/Console/Input/ArgvInput.php index 3ca9b0521e..106d748eda 100644 --- a/src/Symfony/Component/Console/Input/ArgvInput.php +++ b/src/Symfony/Component/Console/Input/ArgvInput.php @@ -68,6 +68,7 @@ class ArgvInput extends Input protected function setTokens(array $tokens) { $this->tokens = $tokens; + $this->parse(); } /**