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