mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-12 01:54:53 +02:00
12 lines
269 B
PHP
12 lines
269 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Contracts\Events\NotifiesUsersEvent;
|
|
use App\Listeners\NotifiesUsers;
|
|
use Illuminate\Support\Facades\Event;
|
|
|
|
test('listening', function (): void {
|
|
Event::assertListening(NotifiesUsersEvent::class, NotifiesUsers::class);
|
|
});
|