Commit 98bafec9 authored by lichtscheu's avatar lichtscheu

fix wrong if statement

parent db8e3a20
......@@ -69,7 +69,7 @@ class HelpCommand extends UserCommand
);
foreach ($command_objs as $command) {
if ($command->showInHelp()) {
if (!$command->showInHelp()) {
continue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment