fresh/src/Hooks/HookInterface.php
Christopher Vagnetoft 1f44d9f44b Webhook support, misc fixes
* Added support for slack (mattermost) webhooks
* Misc fixes
2022-03-08 01:04:03 +01:00

13 lines
185 B
PHP

<?php
namespace NoccyLabs\FreshDocker\Hooks;
use GuzzleHttp\Client;
use RuntimeException;
interface HookInterface
{
public function sendMessage(string $text, array $options);
}