diff --git a/src/ArchPresets/Laravel.php b/src/ArchPresets/Laravel.php index 8be49d1d..59274f3f 100644 --- a/src/ArchPresets/Laravel.php +++ b/src/ArchPresets/Laravel.php @@ -53,6 +53,12 @@ final class Laravel extends AbstractPreset ->toHaveMethod('handle') ->toHaveConstructor(); + $this->expectations[] = expect('App\Listeners') + ->toHaveMethod('handle'); + + $this->expectations[] = expect('App\Events') + ->toHaveConstructor(); + $this->expectations[] = expect('App\Notifications') ->toHaveConstructor() ->toExtend('Illuminate\Notifications\Notification');