【发布时间】:2017-08-16 12:09:08
【问题描述】:
我正在尝试在 Lumen 5.3 中创建 PasswordReset API。
我在默认的 Laravel 5.3 应用程序中设置了相同的设置。
$app->post('/password/email', 'PasswordController@postEmail');
$app->post('/password/reset/{token}', 'PasswordController@postReset');
在用户模型中,我重写了如下方法:
public function sendPasswordResetNotification($token)
{
$this->notify(new ResetPasswordNotification($token));
}
我已经手动拉入 Lumen 5.3 的通知包
但是,我收到以下错误:
BindingResolutionException in Container.php line 763:
Target [Illuminate\Contracts\Mail\Mailer] is not instantiable while building [Illuminate\Notifications\Channels\MailChannel].
我在这里错过了什么?
【问题讨论】:
-
我也有同样的问题,你找到解决办法了吗
标签: laravel-5.3 lumen lumen-5.3