Skip to content

Commit

Permalink
Merge branch '5.6' of github.com:laravel/framework into 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 28, 2018
2 parents 1371583 + 4ee07dd commit fba33e5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/Illuminate/Auth/Authenticatable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace Illuminate\Auth;

use Illuminate\Support\Facades\Hash;

trait Authenticatable
{
/**
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Auth/SessionGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ public function logoutOtherDevices($password, $attribute = 'password')
}

return tap($this->user()->forceFill([
$attribute => Hash::make($password)
$attribute => Hash::make($password),
]))->save();
}

Expand Down

0 comments on commit fba33e5

Please sign in to comment.