8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 740d756 + def2489 commit 70e687aCopy full SHA for 70e687a
src/Facades/Notification.php
@@ -0,0 +1,19 @@
1
+<?php
2
+
3
+namespace Native\Laravel\Facades;
4
5
+use Illuminate\Support\Facades\Facade;
6
7
+/**
8
+ * @method static object title(string $title)
9
+ * @method static object event(string $event)
10
+ * @method static object message(string $body)
11
+ * @method static void show()
12
+ */
13
+class Notification extends Facade
14
+{
15
+ protected static function getFacadeAccessor()
16
+ {
17
+ return \Native\Laravel\Notification::class;
18
+ }
19
+}
0 commit comments