Skip to content

Commit

Permalink
fix recaller
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Aug 9, 2018
1 parent b0baeff commit d491dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Auth/Recaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Recaller
*/
public function __construct($recaller)
{
$this->recaller = @unserialize($recaller, false) ?: $recaller;
$this->recaller = @unserialize($recaller, ['allowed_classes' => false]) ?: $recaller;
}

/**
Expand Down

0 comments on commit d491dff

Please sign in to comment.