Skip to content

Commit

Permalink
Merge pull request #25 from Mombuyish/main
Browse files Browse the repository at this point in the history
Create Native\Laravel\Facades\Notification
  • Loading branch information
mpociot authored Jul 22, 2023
2 parents 740d756 + def2489 commit 70e687a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/Facades/Notification.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

namespace Native\Laravel\Facades;

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 void show()
*/
class Notification extends Facade
{
protected static function getFacadeAccessor()
{
return \Native\Laravel\Notification::class;
}
}

0 comments on commit 70e687a

Please sign in to comment.