diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-05-19 23:46:44 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-06-13 13:34:20 +0200 |
commit | d02fa7c26805dd485b1d16e99a26a5b9a858deda (patch) | |
tree | 71e04f1753ad8a1a18d20360f7dd1323b9f0e877 | |
parent | 5abe14982aff9ed2d9817255ffb8d1752519cf95 (diff) | |
download | volse-hubzilla-d02fa7c26805dd485b1d16e99a26a5b9a858deda.tar.gz volse-hubzilla-d02fa7c26805dd485b1d16e99a26a5b9a858deda.tar.bz2 volse-hubzilla-d02fa7c26805dd485b1d16e99a26a5b9a858deda.zip |
Module\Rpost: Add return type and visibilty for `get`.
-rw-r--r-- | Zotlabs/Module/Rpost.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Rpost.php b/Zotlabs/Module/Rpost.php index 2feb5a968..76ff69643 100644 --- a/Zotlabs/Module/Rpost.php +++ b/Zotlabs/Module/Rpost.php @@ -30,7 +30,7 @@ require_once('include/conversation.php'); */ class Rpost extends \Zotlabs\Web\Controller { - function get() { + public function get(): string { $channel_id = local_channel(); |