mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
22 lines
321 B
PHP
22 lines
321 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Events;
|
|
|
|
use Filament\Notifications\Notification;
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Interface NotifiesUsersEvent.
|
|
*/
|
|
interface NotifiesUsersEvent
|
|
{
|
|
/**
|
|
* Notify the users.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function notify(): void;
|
|
}
|