From 98e4ebb8fd3ca88702c564bd86d4a82725eb802b Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Mon, 10 Jun 2024 11:40:25 +0100 Subject: [PATCH] feat(presets): fixes return type --- src/Preset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Preset.php b/src/Preset.php index d2c75d90..41ad5d64 100644 --- a/src/Preset.php +++ b/src/Preset.php @@ -44,7 +44,7 @@ final class Preset /** * Uses the Pest laravel preset and returns the test call instance. */ - public function laravel(): Strict + public function laravel(): Laravel { return $this->executePreset(new Laravel($this->baseNamespaces())); }