mirror of
https://github.com/NamelessMC/Nameless
synced 2026-08-18 06:29:04 -04:00
17 lines
334 B
PHP
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;
|
|
}
|