There was an error while loading. Please reload this page.
1 parent f717cce commit f21b2dbCopy full SHA for f21b2db
src/Illuminate/Console/Command.php
@@ -101,9 +101,7 @@ public function __construct()
101
// Once we have constructed the command, we'll set the description and other
102
// related properties of the command. If a signature wasn't used to build
103
// the command we'll set the arguments and the options on this command.
104
- if (! isset($this->description)) {
105
- $this->setDescription((string) static::getDefaultDescription());
106
- } else {
+ if (isset($this->description)) {
107
$this->setDescription((string) $this->description);
108
}
109
0 commit comments