diff --git a/src/ArchPresets/Laravel.php b/src/ArchPresets/Laravel.php index 816eeaa7..3cac34ea 100644 --- a/src/ArchPresets/Laravel.php +++ b/src/ArchPresets/Laravel.php @@ -31,7 +31,7 @@ public function execute(): void ->ignoring('App\Enums\Concerns'); $this->expectations[] = expect('App\Features') - ->toBeClasses() + ->toBeClasses()-> ->ignoring('App\Features\Concerns'); $this->expectations[] = expect('App\Features') @@ -39,7 +39,8 @@ public function execute(): void $this->expectations[] = expect('App\Exceptions') ->classes() - ->toImplement('Throwable'); + ->toImplement('Throwable') + ->ignoring('App\Exceptions\Handler'); $this->expectations[] = expect('App') ->not->toImplement(Throwable::class)