From c91ca7f6637c3df509840d3c9176f5f00a9e7dee Mon Sep 17 00:00:00 2001 From: Todd Cornett Date: Thu, 9 Jan 2020 02:03:31 -0800 Subject: [PATCH] Fixing the missing URL for the Package --- src/Restforce.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Restforce.php b/src/Restforce.php index e2747f1..789bcbe 100644 --- a/src/Restforce.php +++ b/src/Restforce.php @@ -129,7 +129,7 @@ private function getOAuthRestClient(): RestClientInterface if ($this->oAuthRestClient === null) { $this->oAuthRestClient = new OAuthRestClient( new SalesforceRestClient( - new GuzzleRestClient('https://na1.salesforce.com'), + new GuzzleRestClient($this->guzzleUrl), $this->apiVersion ), new GuzzleRestClient($this->authUrl),