Skip to content

Commit 34dd521

Browse files
committed
Hopefully fix issues with tests
1 parent 87f723d commit 34dd521

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ class Application
5252
/** @var string Ascii art logo */
5353
protected string $logo = '';
5454

55-
/** @var string Custom help screen */
5655
protected string $_help = '';
5756

5857
/** @var string Name of default command */
@@ -373,6 +372,7 @@ public function showHelp(): mixed
373372
if ($help = $this->help()) {
374373
$writer = $this->io()->writer();
375374
$writer->write($help, true);
375+
376376
return ($this->onExit)();
377377
}
378378

src/Input/Command.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ public function showHelp(): mixed
318318
if ($help = $this->help()) {
319319
$writer = $this->io()->writer();
320320
$writer->write($help, true);
321+
321322
return $this->emit('_exit', 0);
322323
}
323324

0 commit comments

Comments
 (0)