【发布时间】:2020-07-15 19:56:08
【问题描述】:
我认为我应该能够做到这一点,使用类似的东西:
Notification::assertSentTo(new AnonymousNotifiable(), Notification::class, function($notification, $channels, $notifiable){
return $notifiable->routes['mail'] == 'mail@yahoo.com';
});
https://github.com/laravel/framework/pull/21379
但我不确定如何将它用于 nexmo 路线,我正在尝试这样的事情:
Notification::assertSentTo(new AnonymousNotifiable(), Notification::class, function($notification, $channels, $notifiable){
return $notifiable->routes['nexmo'] == '12345';
});
我收到“未发送预期的 [Illuminate\Support\Facades\Notification] 通知。无法断言 false 为真。”
有什么想法吗?
【问题讨论】:
标签: laravel