protected-resources-list/classes/IPluggable.php

8 lines
172 B
PHP

<?php
interface IPluggable
{
public function onServerStarted();
public function onInit(PluginContext $context);
public function onSync(array $remote_config);
}