8000 Merge pull request #25 from Mombuyish/main · NativeLaravel/laravel@70e687a · GitHub
[go: up one dir, main page]

Skip to content

Commit 70e687a

Browse files
authored
Merge pull request NativePHP#25 from Mombuyish/main
Create Native\Laravel\Facades\Notification
2 parents 740d756 + def2489 commit 70e687a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/Facades/Notification.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
0