mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 12:15:01 +02:00
17 lines
312 B
PHP
17 lines
312 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Events;
|
|
|
|
use NotificationChannels\Discord\DiscordMessage;
|
|
|
|
interface DiscordMessageEvent
|
|
{
|
|
public function getDiscordMessage(): DiscordMessage;
|
|
|
|
public function getDiscordChannel(): string;
|
|
|
|
public function shouldSendDiscordMessage(): bool;
|
|
}
|