diff --git a/src/ArchPresets/Laravel.php b/src/ArchPresets/Laravel.php index 403ea4ae..132600fe 100644 --- a/src/ArchPresets/Laravel.php +++ b/src/ArchPresets/Laravel.php @@ -52,5 +52,9 @@ final class Laravel extends AbstractPreset $this->expectations[] = expect('App\Jobs') ->toHaveMethod('handle') ->toHaveConstructor(); + + $this->expectations[] = expect('App\Notifications') + ->toHaveConstructor() + ->toExtend('Illuminate\Notifications\Notification'); } }