mc-cms-namelessmc/core/classes/Events/HasWebhookParams.php
Sam 6f15e14392
chore: fix styleci (#3588)
Co-authored-by: Sam <samerton@users.noreply.github.com>
2025-03-29 10:50:03 +00:00

17 lines
334 B
PHP

<?php
/**
* Represents an event which has specific parameters to send to a webhook.
*
* @package NamelessMC\Events
* @author Aberdeener
* @version 2.2.0
* @license MIT
*/
interface HasWebhookParams
{
/**
* @return array Array of parameters to send to the webhook
*/
public function webhookParams(): array;
}