-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Closed
Labels
Description
Within Symfony 2.8.11 a space between option and its value wasn't a problem.
$ ./app/console --version
Symfony version 2.8.11 - app/dev/debug
$ app/console my:command:name --option= 8
Within Symfony 2.8.12 a space between option and is a problem.
$ ./app/console --version
Symfony version 2.8.12 - app/dev/debug
$ app/console my:command:name --option= 8
[Symfony\Component\Console\Exception\RuntimeException]
Too many arguments, expected arguments "command".
maennchen and sstok