public function SDKConnector::__construct in Apigee Edge 8
Same name in this branch
- 8 src/SDKConnector.php \Drupal\apigee_edge\SDKConnector::__construct()
- 8 modules/apigee_edge_debug/src/SDKConnector.php \Drupal\apigee_edge_debug\SDKConnector::__construct()
- 8 tests/modules/apigee_edge_test/src/SDKConnector.php \Drupal\apigee_edge_test\SDKConnector::__construct()
Constructs a new SDKConnector.
Parameters
\Drupal\apigee_edge\SDKConnectorInterface $inner_service: The decorated SDK connector service.
\Drupal\Core\Http\ClientFactory $client_factory: Http client.
\Drupal\key\KeyRepositoryInterface $key_repository: The key repository.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: Entity type manager service.
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: Module handler service.
\Drupal\Core\Extension\InfoParserInterface $info_parser: Info file parser service.
Overrides SDKConnector::__construct
File
- modules/
apigee_edge_debug/ src/ SDKConnector.php, line 74
Class
- SDKConnector
- Service decorator for SDKConnector.
Namespace
Drupal\apigee_edge_debugCode
public function __construct(SDKConnectorInterface $inner_service, ClientFactory $client_factory, KeyRepositoryInterface $key_repository, EntityTypeManagerInterface $entity_type_manager, ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler, InfoParserInterface $info_parser) {
$this->innerService = $inner_service;
parent::__construct($client_factory, $key_repository, $entity_type_manager, $config_factory, $module_handler, $info_parser);
}