We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1993196 commit fb1f30cCopy full SHA for fb1f30c
src/Symfony/Component/Console/Command/Command.php
@@ -34,7 +34,7 @@ class Command
34
private $processTitle;
35
private $aliases = array();
36
private $definition;
37
- private $hidden;
+ private $hidden = false;
38
private $help;
39
private $description;
40
private $ignoreValidationErrors = false;
@@ -454,9 +454,9 @@ public function getName()
454
*
455
* @return Command The current instance
456
*/
457
- public function setHidden($hiddenBool)
+ public function setHidden($hidden)
458
{
459
- $this->hidden = $hiddenBool;
+ $this->hidden = $hidden;
460
461
return $this;
462
}
0 commit comments