Skip to content

Commit

Permalink
Merge pull request #25 from eventfarm/feature/improve-logging-around-…
Browse files Browse the repository at this point in the history
…oauth

Update OAuthRestClientException.php
  • Loading branch information
kevinthrailkill authored Apr 27, 2021
2 parents 178440e + e34a103 commit f52382e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Rest/OAuthRestClientException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public static function unableToLoadAccessToken(?string $message = null)
$errorMessage = 'Unable to load access token';

if ($message) {
$errorMessage . ': ' . $message;
$errorMessage = $errorMessage . ': ' . $message;
}

return new self($errorMessage);
Expand Down

0 comments on commit f52382e

Please sign in to comment.