You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -158,10 +158,10 @@ This access token should be stored. A method to store this on the file system is
158
158
159
159
The example above uses the php session to achieve the same result.
160
160
161
-
The `LocalFileStore` object needs to be instantiated with access to the token generator and a config class which implements `\Crunch\Salesforce\TokenStore\LocalFileConfigInterface`
161
+
The `LocalFileStore` object needs to be instantiated with access to the token generator and a config class which implements `\Napp\Salesforce\TokenStore\LocalFileConfigInterface`
162
162
163
163
```php
164
-
class SFLocalFileStoreConfig implements \Crunch\Salesforce\TokenStore\LocalFileConfigInterface {
164
+
class SFLocalFileStoreConfig implements \Napp\Salesforce\TokenStore\LocalFileConfigInterface {
165
165
166
166
/**
167
167
* The path where the file will be stored, no trailing slash, must be writable
@@ -179,7 +179,7 @@ class SFLocalFileStoreConfig implements \Crunch\Salesforce\TokenStore\LocalFileC
179
179
The token store can then be created and used to save the access token to the local file system as well as fetching a previously saved token.
180
180
181
181
```php
182
-
$tokenStore = new \Crunch\Salesforce\TokenStore\LocalFile(new \Crunch\Salesforce\AccessTokenGenerator, new SFLocalFileStoreConfig);
182
+
$tokenStore = new \Napp\Salesforce\TokenStore\LocalFile(new \Napp\Salesforce\AccessTokenGenerator, new SFLocalFileStoreConfig);
183
183
184
184
//Save a token
185
185
$tokenStore->saveAccessToken($accessToken);
@@ -210,7 +210,7 @@ Before making a request you should instantiate the client as above and then assi
210
210
211
211
```php
212
212
$sfConfig = new SalesforceConfig();
213
-
$sfClient = new \Crunch\Salesforce\Client($sfConfig, new \GuzzleHttp\Client());
213
+
$sfClient = new \Napp\Salesforce\Client($sfConfig, new \GuzzleHttp\Client());
0 commit comments