From: Art4 Date: Tue, 5 Nov 2024 11:52:23 +0000 (+0000) Subject: Add missing return X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=01ba276455b8ce47b67adada7e02f0f5749b9ab8;p=friendica.git 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. --- diff --git a/src/Console/User.php b/src/Console/User.php index bdbe7be578..b73311368a 100644 --- a/src/Console/User.php +++ b/src/Console/User.php @@ -512,5 +512,7 @@ HELP; $this->out($this->getHelp()); return false; } + + return false; } }