From 52282cc590577568298cc5df6129e52d013c786e Mon Sep 17 00:00:00 2001 From: Punyapal Shah Date: Mon, 10 Jun 2024 21:29:12 +0530 Subject: [PATCH] feat(presets): add expectation for Laravel request suffix --- src/ArchPresets/Laravel.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ArchPresets/Laravel.php b/src/ArchPresets/Laravel.php index 13a8fcb2..6a5b61b9 100644 --- a/src/ArchPresets/Laravel.php +++ b/src/ArchPresets/Laravel.php @@ -27,5 +27,8 @@ final class Laravel extends AbstractPreset $this->expectations[] = expect('App\Models') ->not->toHaveSuffix('Model'); + + $this->expectations[] = expect('App\Http\Requests') + ->toHaveSuffix('Request'); } }