fresh/src/Hooks/HookInterface.php

13 lines
185 B
PHP

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