You are here

public function PropertyEntityReference::__construct in User Merge 2.x

PropertyComment 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.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\Core\Database\Connection $connection: The database connection.

Overrides UserMergePropertyBase::__construct

File

src/Plugin/UserMerge/Property/PropertyEntityReference.php, line 47

Class

PropertyEntityReference
Class PropertyEntityReference.

Namespace

Drupal\usermerge\Plugin\UserMerge\Property

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, Connection $connection) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager);
  $this->connection = $connection;
}