Skip to content
This repository was archived by the owner on Nov 23, 2020. It is now read-only.

Commit bb99618

Browse files
committed
Merge branch 'jorenvanhee-different-user-model-issue-fix' of https://github.com/Laravel-Backpack/Base into jorenvanhee-different-user-model-issue-fix
2 parents b153b4e + 5b50727 commit bb99618

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

src/app/Models/BackpackUser.php

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ class BackpackUser extends User
1010
protected $table = 'users';
1111

1212
/**
13-
* Send the password reset notification.
14-
*
15-
* @param string $token
16-
* @return void
17-
*/
13+
* Send the password reset notification.
14+
*
15+
* @param string $token
16+
*
17+
* @return void
18+
*/
1819
public function sendPasswordResetNotification($token)
1920
{
20-
$this->notify(new ResetPasswordNotification($token));
21+
$this->notify(new ResetPasswordNotification($token));
2122
}
2223

2324
/**

0 commit comments

Comments
 (0)