Skip to content
Snippets Groups Projects
Commit 432d4a93 authored by Aaron Bauman's avatar Aaron Bauman
Browse files

Couple more updates to docs

parent 1b3d8ed9
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ class RestClient implements RestClientInterface { ...@@ -95,7 +95,7 @@ class RestClient implements RestClientInterface {
* *
* @var \Drupal\salesforce\Storage\SalesforceAuthTokenStorage * @var \Drupal\salesforce\Storage\SalesforceAuthTokenStorage
* *
* @deprecated interim, do not use. * @deprecated BC legacy auth scheme only, do not use, will be removed.
*/ */
private $storage; private $storage;
...@@ -137,7 +137,7 @@ class RestClient implements RestClientInterface { ...@@ -137,7 +137,7 @@ class RestClient implements RestClientInterface {
* @return \Drupal\salesforce\Storage\SalesforceAuthTokenStorage * @return \Drupal\salesforce\Storage\SalesforceAuthTokenStorage
* The auth token storage service. * The auth token storage service.
* *
* @deprecated interim, do not use. * @deprecated BC legacy auth scheme only, do not use, will be removed.
*/ */
private function storage() { private function storage() {
if (!$this->storage) { if (!$this->storage) {
......
...@@ -61,7 +61,7 @@ class SalesforceAuthProviderPluginManager extends DefaultPluginManager { ...@@ -61,7 +61,7 @@ class SalesforceAuthProviderPluginManager extends DefaultPluginManager {
/** /**
* Backwards-compatibility for legacy singleton auth. * Backwards-compatibility for legacy singleton auth.
* *
* @deprecated interim, do not use. * @deprecated BC legacy auth scheme only, do not use, will be removed.
*/ */
public static function updateAuthConfig() { public static function updateAuthConfig() {
$oauth = self::getAuthConfig(); $oauth = self::getAuthConfig();
...@@ -79,7 +79,7 @@ class SalesforceAuthProviderPluginManager extends DefaultPluginManager { ...@@ -79,7 +79,7 @@ class SalesforceAuthProviderPluginManager extends DefaultPluginManager {
/** /**
* Backwards-compatibility for legacy singleton auth. * Backwards-compatibility for legacy singleton auth.
* *
* @deprecated interim, do not use. * @deprecated BC legacy auth scheme only, do not use, will be removed.
*/ */
public static function getAuthConfig() { public static function getAuthConfig() {
$config = \Drupal::configFactory()->getEditable('salesforce.settings'); $config = \Drupal::configFactory()->getEditable('salesforce.settings');
......
...@@ -40,7 +40,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface ...@@ -40,7 +40,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface
* @return string * @return string
* Id of the active oauth. * Id of the active oauth.
* *
* @deprecated interim, do not use. * @deprecated BC legacy auth scheme only, do not use, will be removed.
*/ */
private function service() { private function service() {
$oauth = SalesforceAuthProviderPluginManager::getAuthConfig(); $oauth = SalesforceAuthProviderPluginManager::getAuthConfig();
...@@ -50,7 +50,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface ...@@ -50,7 +50,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface
/** /**
* Backwards-compatibility for legacy singleton auth. * Backwards-compatibility for legacy singleton auth.
* *
* @deprecated interim, do not use. * @deprecated BC legacy auth scheme only, do not use, will be removed.
*/ */
public function updateToken() { public function updateToken() {
$this->storeAccessToken($this->service(), $this->storeAccessToken($this->service(),
...@@ -63,7 +63,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface ...@@ -63,7 +63,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface
/** /**
* Backwards-compatibility for legacy singleton auth. * Backwards-compatibility for legacy singleton auth.
* *
* @deprecated interim, do not use. * @deprecated BC legacy auth scheme only, do not use, will be removed.
*/ */
public function updateIdentity() { public function updateIdentity() {
$this->storeIdentity($this->service(), $this->state->get('salesforce.identity')); $this->storeIdentity($this->service(), $this->state->get('salesforce.identity'));
...@@ -143,6 +143,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface ...@@ -143,6 +143,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface
*/ */
public function clearAllTokens() { public function clearAllTokens() {
// noop. We don't do this. Only here to satisfy interface. // noop. We don't do this. Only here to satisfy interface.
return $this;
} }
/** /**
...@@ -180,6 +181,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface ...@@ -180,6 +181,7 @@ class SalesforceAuthTokenStorage implements SalesforceAuthTokenStorageInterface
*/ */
public function clearAllAuthorizationStates() { public function clearAllAuthorizationStates() {
// noop. only here to satisfy interface. Use clearAuthorizationState(). // noop. only here to satisfy interface. Use clearAuthorizationState().
return $this;
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment