The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by App\Jobs\SendPasswordResetEmail: $collectionClass, $id, $relations, $class, $keyBy
The trait Illuminate\Queue\InteractsWithQueue requires some properties which are not provided by App\Jobs\SendPasswordResetEmail: $failedWith, $releaseDelay
Loading history...
17
18
/**
19
* @var User
20
*/
21
private $user;
22
23
/**
24
* @var string
25
*/
26
private $newPass;
27
28
/**
29
* Create a new job instance.
30
*/
31
public function __construct(User $user, string $newPass)