You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
427 B

<?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)
{
return $notification->toWechat($notifiable);
}
}