There was an error while loading. Please reload this page.
1 parent 352eba3 commit 2fc41a1Copy full SHA for 2fc41a1
src/Symfony/Component/Console/Input/Input.php
@@ -37,6 +37,8 @@ abstract class Input implements InputInterface
37
public function __construct(InputDefinition $definition = null)
38
{
39
if (null === $definition) {
40
+ $this->arguments = array();
41
+ $this->options = array();
42
$this->definition = new InputDefinition();
43
} else {
44
$this->bind($definition);
0 commit comments