Skip to content

Commit

Permalink
Fix Endpoint capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbauman committed Mar 27, 2020
1 parent 1719344 commit 5ce6687
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion soapclient/SforceBaseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ protected function _setLoginHeader($loginResult) {
$this->sessionId = $loginResult->sessionId;
$this->setSessionHeader($this->sessionId);
$serverURL = $loginResult->serverUrl;
$this->setEndPoint($serverURL);
$this->setEndpoint($serverURL);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion soapclient/SforceMetadataClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected function _setLoginHeader($loginResult) {
$this->sessionId = $loginResult->sessionId;
$this->setSessionHeader($this->sessionId);
$serverURL = $loginResult->serverUrl;
$this->setEndPoint($serverURL);
$this->setEndpoint($serverURL);
}

/**
Expand Down

0 comments on commit 5ce6687

Please sign in to comment.