From dbbf4522e301d53c32623a80d0d659c123d9613f Mon Sep 17 00:00:00 2001 From: prateek banga Date: Tue, 22 Aug 2023 22:17:32 +0530 Subject: [PATCH] lint fix --- app/workers/messaging.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/workers/messaging.php b/app/workers/messaging.php index 5fba550baa..0ed9853e41 100644 --- a/app/workers/messaging.php +++ b/app/workers/messaging.php @@ -47,7 +47,7 @@ class MessagingV1 extends Worker }; } - function push($record): ?PushAdapter + public function push($record): ?PushAdapter { $credentials = $record->getAttribute('credentials'); return match ($record->getAttribute('provider')) { @@ -106,7 +106,7 @@ class MessagingV1 extends Worker // Send the message using respective adapter } - function shutdown(): void + public function shutdown(): void { } }