From 14bb6cd8ee27a131ed483d5024d26e7db218419c Mon Sep 17 00:00:00 2001 From: Cavasin F Date: Tue, 12 Dec 2023 14:21:10 +0100 Subject: [PATCH] phpstan fix --- tests/Event/NotificationEventTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Event/NotificationEventTest.php b/tests/Event/NotificationEventTest.php index 57c6e5b..60a1e58 100644 --- a/tests/Event/NotificationEventTest.php +++ b/tests/Event/NotificationEventTest.php @@ -76,7 +76,7 @@ private function generateNbNotifications(): array $arr[] = $defaultNotification; // 3 - $disabledNotification = new NotificationModel('disabled', 'My disabled Message', null); + $disabledNotification = new NotificationModel('disabled', 'My disabled Message'); $disabledNotification->setDisabled(true); $disabledNotification->setBadgeAnimated(false); $arr[] = $disabledNotification;