From 3394cc3bf5760251732f3089dd34b29d95242bac Mon Sep 17 00:00:00 2001 From: Eser DENIZ Date: Thu, 21 Nov 2024 23:03:07 +0100 Subject: [PATCH] fix: Notification facade docbloc Method returns `static` instead of `object` --- src/Facades/Notification.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Facades/Notification.php b/src/Facades/Notification.php index 4f9f56d..425fea1 100644 --- a/src/Facades/Notification.php +++ b/src/Facades/Notification.php @@ -5,9 +5,9 @@ use Illuminate\Support\Facades\Facade; /** - * @method static object title(string $title) - * @method static object event(string $event) - * @method static object message(string $body) + * @method static static title(string $title) + * @method static static event(string $event) + * @method static static message(string $body) * @method static void show() */ class Notification extends Facade