feat(presets): add expectation for Laravel exception suffix

This commit is contained in:
Punyapal Shah
2024-06-10 21:36:59 +05:30
parent e8b09d6f8c
commit 917f7a64a0

View File

@ -33,5 +33,8 @@ final class Laravel extends AbstractPreset
$this->expectations[] = expect('App\Console\Commands')
->toHaveSuffix('Command');
$this->expectations[] = expect('App\Exceptions')
->toImplement('Throwable');
}
}