Files
animethemes-server/app/Contracts/Events/NotifiesUsersEvent.php
T
2025-04-11 18:38:36 -03:00

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;
}