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 639aeb5 commit fd794a7Copy full SHA for fd794a7
src/Application.php
@@ -53,7 +53,7 @@ class Application
53
protected string $logo = '';
54
55
/** @var string Custom help screen */
56
- protected string $custom_help = '';
+ protected string $help = '';
57
58
/** @var string Name of default command */
59
protected string $default = '__default__';
@@ -357,10 +357,10 @@ protected function aliasesFor(Command $command): array
357
public function help(?string $help = null): mixed
358
{
359
if (func_num_args() === 0) {
360
- return $this->custom_help;
+ return $this->help;
361
}
362
363
- $this->custom_help = $help;
+ $this->help = $help;
364
365
return $this;
366
0 commit comments