You are here

public function AppCacheByOwnerFactory::__construct in Apigee Edge 8

AppCacheByAppOwnerFactory constructor.

Parameters

\Drupal\apigee_edge\Entity\Controller\Cache\AppCacheInterface $app_cache: The app cache service that stores app by their app id (UUID).

\Drupal\apigee_edge\Entity\Controller\Cache\AppNameCacheByOwnerFactoryInterface $app_name_cache_by_owner_factory: The app name cache by owner factory service.

File

src/Entity/Controller/Cache/AppCacheByOwnerFactory.php, line 59

Class

AppCacheByOwnerFactory
Base definition of the general app cache service for an app owner.

Namespace

Drupal\apigee_edge\Entity\Controller\Cache

Code

public function __construct(AppCacheInterface $app_cache, AppNameCacheByOwnerFactoryInterface $app_name_cache_by_owner_factory) {
  $this->appCache = $app_cache;
  $this->appNameCacheByOwnerFactory = $app_name_cache_by_owner_factory;
}