chimera-mark2-core-release/core/fox/webhookCallable.php

25 lines
453 B
PHP

<?php
namespace fox;
/**
*
* Interface fox\externalCallable
*
* @copyright MX STAR LLC 2021
* @version 4.0.0
* @author Pavel Dmitriev
* @license GPLv3
*
*/
interface webhookCallable
{
/*
* public static function HOOK_<method>_<function>(request $request);
* Example:
* public static function HOOK_POST_members(request $request);
* public static function HOOKCall(request $request);
*
*/
}
?>