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
418 B

<?php
/**
* 短信通道
*/
namespace App\Channels;
use Illuminate\Notifications\Notification;
class SmsChannel
{
/**
* 发送给定通知.
*
* @param mixed $notifiable
* @param \Illuminate\Notifications\Notification $notification
* @return void
*/
public function send($notifiable, Notification $notification)
{
return $notification->toSms($notifiable);
}
}