совместим с Illuminate \ Foundation \ Auth \ User :: sendEmailVerificationNotification () - PullRequest
0 голосов
/ 25 марта 2020

Мне нужно изменить сообщение об ошибке по умолчанию, поэтому я делаю свое собственное уведомление ResetPassword, и когда я делаю это, я получаю эту ошибку Объявление App \ User :: sendEmailVerificationNotification ($ token) должно быть совместимо с Illuminate \ Foundation \ Auth \ User :: sendEmailVerificationNotification ()

код в модели пользователя:

<?php

namespace App;

use App\admin\Course;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable implements MustVerifyEmail
{
    use Notifiable; // حتى اقدر ارسل اله اشعار

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password','type','mobile',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];

    /**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    protected $casts = [
        'email_verified_at' => 'datetime',
    ];

     public function courses()
    {
        return $this->belongsToMany(Course::class, 'course_user', 'user_id', 'course_id');
    }

    public function routeNotificationForNexmo($notification)
    {
        return $this->mobile;
    }

    public function sendPasswordResetNotification($token)
        {

        $this->notify(new \App\Notifications\ResetPassword($token));

    }

    public function sendEmailVerificationNotification($token)
        {

        $this->notify(new \App\Notifications\VerifyEmail($token));

    }    
}

Why !!
...