public function TeamAppCredentialControllerFactory::__construct in Apigee Edge 8
TeamAppCredentialControllerFactory 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
- modules/
apigee_edge_teams/ src/ Entity/ Controller/ TeamAppCredentialControllerFactory.php, line 70
Class
- TeamAppCredentialControllerFactory
- The team app credential controller factory.
Namespace
Drupal\apigee_edge_teams\Entity\ControllerCode
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;
}