Skip to content

Commit fd794a7

Browse files
kodieadhocore
authored andcommitted
Rename custom_help to help
1 parent 639aeb5 commit fd794a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Application.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Application
5353
protected string $logo = '';
5454

5555
/** @var string Custom help screen */
56-
protected string $custom_help = '';
56+
protected string $help = '';
5757

5858
/** @var string Name of default command */
5959
protected string $default = '__default__';
@@ -357,10 +357,10 @@ protected function aliasesFor(Command $command): array
357357
public function help(?string $help = null): mixed
358358
{
359359
if (func_num_args() === 0) {
360-
return $this->custom_help;
360+
return $this->help;
361361
}
362362

363-
$this->custom_help = $help;
363+
$this->help = $help;
364364

365365
return $this;
366366
}

0 commit comments

Comments
 (0)