| Current Path : /opt/nginxhttpd_/vendor/extensions-cpanel/cpanel-development-lib/src/Hook/ |
| Current File : //opt/nginxhttpd_/vendor/extensions-cpanel/cpanel-development-lib/src/Hook/HookInterface.php |
<?php
namespace O2switch\CpanelLib\Hook;
interface HookInterface
{
/**
* Main hook code, $data is from the getPassedData.
*
* @return string Result_code Result_message
*/
public function hookAction() : string;
/**
* Return a json string describing the hooks for the cPanel manage_hooks utility.
*
* @return string json
*/
public function describe() : string;
}