Update Command.php

This commit is contained in:
jwdeitch 2016-09-22 16:16:44 -04:00 committed by GitHub
parent b73f494712
commit 1add2ad120

View File

@ -447,7 +447,7 @@ class Command
return $this->name; return $this->name;
} }
/** /**
* Sets if the command should be hidden from application inspection. * Sets if the command should be hidden from application inspection.
* *
* @param bool $hiddenBool To show this command or not * @param bool $hiddenBool To show this command or not
@ -457,13 +457,14 @@ class Command
public function setHidden($hiddenBool) public function setHidden($hiddenBool)
{ {
$this->hidden = $hiddenBool; $this->hidden = $hiddenBool;
return $this; return $this;
} }
/** /**
* Returns if the command should be hidden from application inspection. * Returns if the command should be hidden from application inspection.
* *
* @return boolean If the command is hidden or not * @return bool If the command is hidden or not
*/ */
public function isHidden() public function isHidden()
{ {