Exemplo n.º 1
0
 /**
  * Validate a user against the given credentials.
  *
  * @param  \Illuminate\Security\UserInterface  $user
  * @param  array  $credentials
  * @return bool
  */
 public function validateCredentials(UserInterface $user, array $credentials)
 {
     $plain = $credentials['password'];
     return $this->hasher->check($plain, $user->getAuthPassword());
 }