From 87da3978322bcccbeebec0b84f2c1b54d9fa509c Mon Sep 17 00:00:00 2001 From: "iVampireSP.com" Date: Sun, 6 Nov 2022 23:19:47 +0800 Subject: [PATCH] remove --- app/Notifications/WeComRobotChannel.php | 41 ------------------------- 1 file changed, 41 deletions(-) delete mode 100644 app/Notifications/WeComRobotChannel.php diff --git a/app/Notifications/WeComRobotChannel.php b/app/Notifications/WeComRobotChannel.php deleted file mode 100644 index ea8cd9e..0000000 --- a/app/Notifications/WeComRobotChannel.php +++ /dev/null @@ -1,41 +0,0 @@ -toSms($notifiable); - - // Now we hopefully have a instance of a SmsMessage. - // That we are ready to send to our user. - // Let's do it :-) - $message->send(); - - // Or use dryRun() for testing to send it, without sending it for real. - $message->dryRun()->send(); - - // Wait.. was that it? - // Well sort of.. :-) - // But we need to implement this magical SmsMessage class for it to work. - - } -}