Skip to content

Commit

Permalink
Merge pull request #851 from mlivan/master
Browse files Browse the repository at this point in the history
Fix bug - add missing parenthesis in FiwareResourceOwner.php
  • Loading branch information
soullivaneuh committed Aug 21, 2015
2 parents 2ca54c1 + be66971 commit d0b9a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OAuth/ResourceOwner/FiwareResourceOwner.php
Expand Up @@ -77,7 +77,7 @@ public function getUserInformation(array $accessToken, array $extraParameters =
$response->setResponse($content->getContent());

$response->setResourceOwner($this);
$response->setOAuthToken(new OAuthToken($accessToken);
$response->setOAuthToken(new OAuthToken($accessToken));

return $response;
}
Expand Down

0 comments on commit d0b9a9e

Please sign in to comment.