Skip to content

Commit 4abae28

Browse files
authored
[Bug] removed extra $ in password reset error message (alexjustesen#1457)
1 parent a9b1f4b commit 4abae28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Console/Commands/ResetUserPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function handle(): void
3232

3333
if (! $user) {
3434
// couldn't find the user so should fail.
35-
$this->error('Could not find a user with the email address of '.$$this->argument('email'));
35+
$this->error('Could not find a user with the email address of '.$this->argument('email'));
3636

3737
return;
3838
}

0 commit comments

Comments
 (0)