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