JPushNotificationChannel.php 303 Bytes
<?php

namespace App\Channels;

use App\Models\User;
use Illuminate\Notifications\Notification;

class JPushNotificationChannel
{
    public function send(User $notifiable, Notification $notification): void
    {
        // @phpstan-ignore-next-line
        $notification->toJPush($notifiable);
    }
}