Add missing return

This needs some refactoring: returning nothing implicit returns null, thas will be convert to int 0.
I return false instead of nothing to keep this behaviour for BC.
This commit is contained in:
Art4 2024-11-05 11:52:23 +00:00
parent bf04b3e57d
commit 01ba276455

View file

@ -512,5 +512,7 @@ HELP;
$this->out($this->getHelp());
return false;
}
return false;
}
}