You are here

public function DeveloperAppCredentialControllerFactory::__construct in Apigee Edge 8

DeveloperAppCredentialControllerFactory constructor.

Parameters

\Drupal\apigee_edge\SDKConnectorInterface $connector: The SDK connector service.

\Drupal\apigee_edge\Entity\Controller\Cache\AppCacheByOwnerFactoryInterface $app_cache_by_owner_factory: The app cache by owner factory service.

\Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher: The event dispatcher service.

File

src/Entity/Controller/DeveloperAppCredentialControllerFactory.php, line 70

Class

DeveloperAppCredentialControllerFactory
The developer app credential controller factory.

Namespace

Drupal\apigee_edge\Entity\Controller

Code

public function __construct(SDKConnectorInterface $connector, AppCacheByOwnerFactoryInterface $app_cache_by_owner_factory, EventDispatcherInterface $event_dispatcher) {
  $this->connector = $connector;
  $this->eventDispatcher = $event_dispatcher;
  $this->appCacheByOwnerFactory = $app_cache_by_owner_factory;
}