From f7ed336f99d7ae9ad00d912e28448ec2becd7c6f Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Tue, 20 May 2025 16:26:05 -0700 Subject: [PATCH] Remove typehint --- .../Notifications/Email/EmailNotificationsUponCheckinTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Notifications/Email/EmailNotificationsUponCheckinTest.php b/tests/Feature/Notifications/Email/EmailNotificationsUponCheckinTest.php index 4497533f63..254e2e09ca 100644 --- a/tests/Feature/Notifications/Email/EmailNotificationsUponCheckinTest.php +++ b/tests/Feature/Notifications/Email/EmailNotificationsUponCheckinTest.php @@ -112,7 +112,7 @@ class EmailNotificationsUponCheckinTest extends TestCase $this->fireCheckInEvent($asset, $user); - Mail::assertSent(CheckinAssetMail::class, function (CheckinAssetMail $mail) use ($user) { + Mail::assertSent(CheckinAssetMail::class, function ($mail) use ($user) { return $mail->hasTo($user->email) && $mail->hasCc('cc@example.com'); }); }