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