8000 Create Notification.php · NativeLaravel/laravel@33da1b6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 33da1b6

Browse files
committed
Create Notification.php
1 parent 2545589 commit 33da1b6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/Facades/Notification.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace Native\Laravel\Facades;
4+
5+
use Illuminate\Support\Facades\Facade;
6+
7+
class Notification extends Facade
8+
{
9+
protected static function getFacadeAccessor()
10+
{
11+
return \Native\Laravel\Notification::class;
12+
}
13+
}

0 commit comments

Comments
 (0)
0