**Symfony version(s) affected**: master **Description** I saw that the [Application.php-L874](https://github.com/symfony/symfony/blob/e9db551ab04a93c17571183f12eff619364a161d/src/Symfony/Component/Console/Application.php#L874) has a handle to `--verbose=<value>`, but this usage raises an exception when the console is executed. When I execute in the console: ```shell $ <console-progrom-name> list --verbose=3 ``` Will throw an exception: ```shell [Symfony\Component\Console\Exception\RuntimeException] The `--verbose` option does not accept a value. ```