You are here

public function TokenAuthUser::addCacheableDependency in Simple OAuth (OAuth2) & OpenID Connect 8.2

Same name and namespace in other branches
  1. 8.4 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::addCacheableDependency()
  2. 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::addCacheableDependency()
  3. 8.3 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::addCacheableDependency()
  4. 5.x src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::addCacheableDependency()

Adds a dependency on an object: merges its cacheability metadata.

Parameters

\Drupal\Core\Cache\CacheableDependencyInterface|object $other_object: The dependency. If the object implements CacheableDependencyInterface, then its cacheability metadata will be used. Otherwise, the passed in object must be assumed to be uncacheable, so max-age 0 is set.

Return value

$this

Overrides RefinableCacheableDependencyInterface::addCacheableDependency

See also

\Drupal\Core\Cache\CacheableMetadata::createFromObject()

File

src/Authentication/TokenAuthUser.php, line 592

Class

TokenAuthUser
@internal

Namespace

Drupal\simple_oauth\Authentication

Code

public function addCacheableDependency($other_object) {
  return $this->subject
    ->addCacheableDependency($other_object);
}