diff options
author | Mario <mario@mariovavti.com> | 2021-05-27 17:42:28 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-27 17:42:28 +0000 |
commit | 3eb1b9d168644ed4fd8bca5de8360c7ededbacfc (patch) | |
tree | c58c0bd88ae65d52dc36511550a7760cb4bed4ad /Zotlabs/Zot6/IHandler.php | |
parent | 2fb3d6ddf5e72b97fbbdfbc65cdaba90ff73d4b8 (diff) | |
download | volse-hubzilla-3eb1b9d168644ed4fd8bca5de8360c7ededbacfc.tar.gz volse-hubzilla-3eb1b9d168644ed4fd8bca5de8360c7ededbacfc.tar.bz2 volse-hubzilla-3eb1b9d168644ed4fd8bca5de8360c7ededbacfc.zip |
remove reply_message_request(), implement force_refresh and minor fixes
Diffstat (limited to 'Zotlabs/Zot6/IHandler.php')
-rw-r--r-- | Zotlabs/Zot6/IHandler.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Zotlabs/Zot6/IHandler.php b/Zotlabs/Zot6/IHandler.php index 53b6caa89..4e7738926 100644 --- a/Zotlabs/Zot6/IHandler.php +++ b/Zotlabs/Zot6/IHandler.php @@ -4,15 +4,13 @@ namespace Zotlabs\Zot6; interface IHandler { - function Notify($data,$hub); + function Notify($data, $hub); - function Request($data,$hub); + function Rekey($sender, $data, $hub); - function Rekey($sender,$data,$hub); + function Refresh($sender, $recipients, $hub, $force); - function Refresh($sender,$recipients,$hub); - - function Purge($sender,$recipients,$hub); + function Purge($sender, $recipients, $hub); } |