Exemplo n.º 1
0
 /**
  * Determine if the user matches the credentials.
  *
  * @param  mixed  $user
  * @param  array  $credentials
  * @return bool
  */
 protected function hasValidCredentials($user, $credentials)
 {
     return !is_null($user) && $this->provider->validateCredentials($user, $credentials);
 }