Skip to content

Commit 98bafec

Browse files
committed
fix wrong if statement
1 parent db8e3a2 commit 98bafec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/UserCommands/HelpCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function execute()
6969
);
7070

7171
foreach ($command_objs as $command) {
72-
if ($command->showInHelp()) {
72+
if (!$command->showInHelp()) {
7373
continue;
7474
}
7575

0 commit comments

Comments
 (0)