You are here

public function KeyProviderRequirementsBase::__construct in Apigee Edge 8

KeyProviderRequirementsBase constructor.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Psr\Log\LoggerInterface $logger: The logger.

Overrides KeyPluginBase::__construct

1 call to KeyProviderRequirementsBase::__construct()
PrivateFileKeyProvider::__construct in src/Plugin/KeyProvider/PrivateFileKeyProvider.php
PrivateFileKeyProvider constructor.
1 method overrides KeyProviderRequirementsBase::__construct()
PrivateFileKeyProvider::__construct in src/Plugin/KeyProvider/PrivateFileKeyProvider.php
PrivateFileKeyProvider constructor.

File

src/Plugin/KeyProvider/KeyProviderRequirementsBase.php, line 56

Class

KeyProviderRequirementsBase
Base class for key providers with pre-requirements.

Namespace

Drupal\apigee_edge\Plugin\KeyProvider

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, LoggerInterface $logger) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->logger = $logger;
}