19 lines
248 B
PHP
19 lines
248 B
PHP
<?php
|
|
|
|
namespace Zotlabs\Zot6;
|
|
|
|
interface IHandler {
|
|
|
|
function Notify($data,$hub);
|
|
|
|
function Request($data,$hub);
|
|
|
|
function Rekey($sender,$data,$hub);
|
|
|
|
function Refresh($sender,$recipients,$hub);
|
|
|
|
function Purge($sender,$recipients,$hub);
|
|
|
|
}
|
|
|