vito/app/Facades/Notifier.php
2024-03-24 09:56:34 +01:00

18 lines
340 B
PHP

<?php
namespace App\Facades;
use App\Notifications\NotificationInterface;
use Illuminate\Support\Facades\Facade;
/**
* @method static void send(object $notifiable, NotificationInterface $notification)
*/
class Notifier extends Facade
{
protected static function getFacadeAccessor(): string
{
return 'notifier';
}
}