20 lines
422 B
PHP
20 lines
422 B
PHP
<?php
|
|
|
|
namespace App\Channels;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class VoiceChannel
|
|
{
|
|
/**
|
|
* 发送指定的通知.
|
|
* @param mixed $notifiable
|
|
* @param \Illuminate\Notifications\Notification $notification
|
|
* @return void
|
|
*/
|
|
public function send($notifiable, Notification $notification)
|
|
{
|
|
$message = $notification->toWeChat($notifiable);
|
|
}
|
|
}
|