Skip to content

Commit 74c98f2

Browse files
committed
🐛 Fixed command descriptions not showing
1 parent 5625217 commit 74c98f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

App/Console/ExampleCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
class ExampleCommand extends Command
77
{
88
protected static $defaultName = "example";
9-
private $description = "example command's description";
10-
private $help = "example command's help";
9+
public $description = "example command's description";
10+
public $help = "example command's help";
1111

12-
protected function configure()
12+
protected function config()
1313
{
1414
$this
1515
->setArgument("argument", "optional", "argument description")

0 commit comments

Comments
 (0)