feat(presets): add expectation for Laravel command suffix

This commit is contained in:
Punyapal Shah
2024-06-10 21:35:42 +05:30
parent 52282cc590
commit e8b09d6f8c

View File

@ -30,5 +30,8 @@ final class Laravel extends AbstractPreset
$this->expectations[] = expect('App\Http\Requests')
->toHaveSuffix('Request');
$this->expectations[] = expect('App\Console\Commands')
->toHaveSuffix('Command');
}
}