Skip to content

Commit

Permalink
Apply fixes from StyleCI (#36615)
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 16, 2021
1 parent eacabc7 commit ebfa75f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Auth/SessionGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ public function logoutOtherDevices($password, $attribute = 'password')
protected function rehashUserPassword($password, $attribute)
{
if (! Hash::check($password, $this->user()->{$attribute})) {
throw new InvalidArgumentException("The given password does not match the current password.");
throw new InvalidArgumentException('The given password does not match the current password.');
}

return tap($this->user()->forceFill([
Expand Down

0 comments on commit ebfa75f

Please sign in to comment.