SendSMSChannel.php 381 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: mead
  5. * Date: 2018/7/13
  6. * Time: 下午4:05
  7. */
  8. namespace App\Channels;
  9. use Illuminate\Notifications\Notification;
  10. class SendSMSChannel
  11. {
  12. public function send($notifiable, Notification $notification)
  13. {
  14. if (!method_exists($notification, 'toSendSMS')) return false;
  15. $notification->toSendSMS($notifiable);
  16. }
  17. }