Skip to content

Commit 45f871c

Browse files
authored
Merge pull request #176 from ppatrik/patch-2
fix: order of contructor attributes for RefreshToken is fixed
2 parents 75087ac + 77bd217 commit 45f871c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Http/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ private function fetchTokens(): array
9191
{
9292
if ($refreshToken = $this->tokenStorage->retrieveRefreshToken()) {
9393
$refreshTokenGrantType = new RefreshToken(
94-
$this->grantType->clientId,
9594
$refreshToken->toString(),
95+
$this->grantType->clientId,
9696
$this->grantType->realm,
9797
$this->grantType->clientSecret,
9898
$this->grantType->scope,

0 commit comments

Comments
 (0)