The method sendTo() does not seem to exist on object<App\Services\Mailers\MemberMailer>.
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
17
$event->user->email,
18
'Welkom bij ' . config('app.url'),
19
'emails.auth.front.welcome',
20
['userId' => $event->user->id]
21
);
22
}
23
24
public function userWasCreatedThroughBack(UserWasCreatedThroughBack $event)
25
{
26
Password::broker('front')->sendResetLink(['email' => $event->user->email], function (Message $message) {
27
$message->subject('Welkom bij ' . config('app.url'));
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.