From 3e1e1ecd4c4d26f9847f9258a58f0d57b8f2b3fa Mon Sep 17 00:00:00 2001 From: atymic Date: Tue, 15 Feb 2022 10:48:06 +1100 Subject: [PATCH] chore: style fixes --- tests/ScheduledNotificationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ScheduledNotificationTest.php b/tests/ScheduledNotificationTest.php index d41159d..7056c95 100644 --- a/tests/ScheduledNotificationTest.php +++ b/tests/ScheduledNotificationTest.php @@ -221,7 +221,7 @@ public function testCannotCreateNotificationWithNonNotifiable() $this->expectException(SchedulingFailedException::class); ScheduledNotification::create( - new \StdClass(), + new \stdClass(), new TestNotification(User::find(2)), Carbon::now()->addSeconds(10) );