You are here

public function DeveloperCache::__construct in Apigee Edge 8

DeveloperCache constructor.

Parameters

\Drupal\apigee_edge\MemoryCacheFactoryInterface $memory_cache_factory: The memory cache factory service.

\Drupal\apigee_edge\Entity\Controller\Cache\EntityIdCacheInterface $entity_id_cache: The developer entity id cache.

Overrides EntityCache::__construct

File

src/Entity/Controller/Cache/DeveloperCache.php, line 52

Class

DeveloperCache
Default developer cache implementation.

Namespace

Drupal\apigee_edge\Entity\Controller\Cache

Code

public function __construct(MemoryCacheFactoryInterface $memory_cache_factory, EntityIdCacheInterface $entity_id_cache) {
  parent::__construct($memory_cache_factory, $entity_id_cache, 'developer');
}