| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class BackpackUser extends User |
||
| 10 | { |
||
| 11 | use HasParentModel; |
||
|
|
|||
| 12 | |||
| 13 | protected $table = 'users'; |
||
|
1 ignored issue
–
show
|
|||
| 14 | |||
| 15 | /** |
||
| 16 | * Send the password reset notification. |
||
| 17 | * |
||
| 18 | * @param string $token |
||
|
1 ignored issue
–
show
|
|||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | public function sendPasswordResetNotification($token) |
||
|
1 ignored issue
–
show
|
|||
| 23 | { |
||
| 24 | $this->notify(new ResetPasswordNotification($token)); |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get the e-mail address where password reset links are sent. |
||
| 29 | * |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function getEmailForPasswordReset() |
||
| 35 | } |
||
| 36 | } |
||
| 37 |