You are here

public static function EdgeEntityEventDeriverBase::create in Apigee Edge 8

Creates a new class instance.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the fetcher.

string $base_plugin_id: The base plugin ID for the plugin ID.

Return value

static Returns an instance of this fetcher.

Overrides ContainerDeriverInterface::create

File

modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityEventDeriverBase.php, line 58

Class

EdgeEntityEventDeriverBase
Rules event deriver for Apigee Edge entity types.

Namespace

Drupal\apigee_edge_actions\Plugin\RulesEvent

Code

public static function create(ContainerInterface $container, $base_plugin_id) {
  return new static($container
    ->get('apigee_edge_actions.edge_entity_type_manager'));
}