From 33da1b6e69c5ccddbf76c4672be42e29af8cfaec Mon Sep 17 00:00:00 2001 From: YishOwlTing Date: Fri, 21 Jul 2023 12:47:06 +0800 Subject: [PATCH 1/4] Create Notification.php --- src/Facades/Notification.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/Facades/Notification.php diff --git a/src/Facades/Notification.php b/src/Facades/Notification.php new file mode 100644 index 0000000..94c5faf --- /dev/null +++ b/src/Facades/Notification.php @@ -0,0 +1,13 @@ + Date: Sat, 22 Jul 2023 10:52:07 +0800 Subject: [PATCH 2/4] Update Notification.php --- src/Facades/Notification.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Facades/Notification.php b/src/Facades/Notification.php index 94c5faf..c7b45d9 100644 --- a/src/Facades/Notification.php +++ b/src/Facades/Notification.php @@ -3,7 +3,15 @@ namespace Native\Laravel\Facades; use Illuminate\Support\Facades\Facade; +use phpDocumentor\Reflection\Types\Object_; +/** + * @method static object new() + * @method static object title(string $title) + * @method static object event(string $event) + * @method static object message(string $body) + * @method static void show() + */ class Notification extends Facade { protected static function getFacadeAccessor() From ac8163de072efc4f1ac5eec3adbeba395cbf3306 Mon Sep 17 00:00:00 2001 From: YishOwlTing Date: Sat, 22 Jul 2023 22:16:52 +0800 Subject: [PATCH 3/4] Update Notification.php --- src/Facades/Notification.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Facades/Notification.php b/src/Facades/Notification.php index c7b45d9..f8988f8 100644 --- a/src/Facades/Notification.php +++ b/src/Facades/Notification.php @@ -3,7 +3,6 @@ namespace Native\Laravel\Facades; use Illuminate\Support\Facades\Facade; -use phpDocumentor\Reflection\Types\Object_; /** * @method static object new() From def2489aec64fde2c7b75421eeff7c0263ac8b68 Mon Sep 17 00:00:00 2001 From: YishOwlTing Date: Sat, 22 Jul 2023 22:17:59 +0800 Subject: [PATCH 4/4] Update Notification.php --- src/Facades/Notification.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Facades/Notification.php b/src/Facades/Notification.php index f8988f8..4f9f56d 100644 --- a/src/Facades/Notification.php +++ b/src/Facades/Notification.php @@ -5,7 +5,6 @@ use Illuminate\Support\Facades\Facade; /** - * @method static object new() * @method static object title(string $title) * @method static object event(string $event) * @method static object message(string $body)