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