16 lines
273 B
PHP
16 lines
273 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
use App\Services\RedisNotificationService;
|
|
|
|
class RedisNotifications extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return \App\Services\RedisNotificationService::class;
|
|
}
|
|
}
|
|
|