Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsbyjerome committed Jul 5, 2023
1 parent 20ce804 commit 703043f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/OAuth/OAuth2/OAuth2LoginHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ public function getUserInfo($accessToken = null, $env = "production"){
$this->LogAPIResponseToLog($intuitResponse->getBody(), $url, $intuitResponse->getHeaders());
$this->faultHandler = $intuitResponse->getFaultHandler();
if($this->faultHandler) {
throw new ServiceException("Get UrerInfo failed. Body: [" . $this->faultHandler->getResponseBody() . "].", $this->faultHandler->getHttpStatusCode());
throw new ServiceException("Get UserInfo failed. Body: [" . $this->faultHandler->getResponseBody() . "].", $this->faultHandler->getHttpStatusCode());
}else{
$this->faultHandler = false;
}
Expand Down

0 comments on commit 703043f

Please sign in to comment.