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.
pull/14529/head
Art4 2024-11-05 11:52:23 +00:00
parent bf04b3e57d
commit 01ba276455
1 changed files with 2 additions and 0 deletions

View File

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