mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
17 lines
231 B
PHP
17 lines
231 B
PHP
<?php
|
|
|
|
namespace Zotlabs\Zot6;
|
|
|
|
interface IHandler {
|
|
|
|
function Notify($data, $hub);
|
|
|
|
function Rekey($sender, $data, $hub);
|
|
|
|
function Refresh($sender, $recipients, $hub, $force);
|
|
|
|
function Purge($sender, $recipients, $hub);
|
|
|
|
}
|
|
|