mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 04:05:07 +02:00
18 lines
375 B
PHP
18 lines
375 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Events;
|
|
|
|
use Filament\Notifications\Notification;
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface FilamentNotificationEvent
|
|
{
|
|
public function shouldSendFilamentNotification(): bool;
|
|
|
|
public function getFilamentNotification(): Notification;
|
|
|
|
public function getFilamentNotificationRecipients(): Collection;
|
|
}
|