public function ImportContext::__construct in Entity Share 8.3
Constructor.
Parameters
string $remote_id: The remote ID.
string $channel_id: The channel ID.
string $import_config_id: The import config ID.
File
- modules/
entity_share_client/ src/ ImportContext.php, line 75
Class
- ImportContext
- Class ImportContext.
Namespace
Drupal\entity_share_clientCode
public function __construct($remote_id, $channel_id, $import_config_id) {
$this->remoteId = $remote_id;
$this->channelId = $channel_id;
$this->importConfigId = $import_config_id;
}