mirror of
https://github.com/friendica/friendica
synced 2025-02-08 19:38:51 +00:00
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:
parent
bf04b3e57d
commit
01ba276455
1 changed files with 2 additions and 0 deletions
|
@ -512,5 +512,7 @@ HELP;
|
||||||
$this->out($this->getHelp());
|
$this->out($this->getHelp());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue