We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 113e85f + 365f973 commit 23fb1edCopy full SHA for 23fb1ed
src/app/Library/Auth/PasswordBroker.php
@@ -3,6 +3,7 @@
3
namespace Backpack\CRUD\app\Library\Auth;
4
5
use Backpack\CRUD\app\Notifications\ResetPasswordNotification;
6
+use Closure;
7
use Illuminate\Auth\Passwords\PasswordBroker as OriginalPasswordBroker;
8
9
/**
@@ -17,7 +18,7 @@ class PasswordBroker extends OriginalPasswordBroker
17
18
* @param array $credentials
19
* @return string
20
*/
- public function sendResetLink(array $credentials)
21
+ public function sendResetLink(array $credentials, Closure $callback = null)
22
{
23
// First we will check to see if we found a user at the given credentials and
24
// if we did not we will redirect back to this current URI with a piece of
0 commit comments