You are here

public function BlockFieldBlockContentImporter::__construct in Entity Share 8.2

Constructor.

Parameters

\Drupal\entity_share_client\Service\RemoteManagerInterface $remote_manager: The remote manager.

\Drupal\entity_share_client\Service\JsonapiHelperInterface $jsonapi_helper: The jsonapi helper.

\Drupal\entity_share_client\Service\RequestServiceInterface $request_service: The request service.

File

modules/entity_share_client/src/EventSubscriber/BlockFieldBlockContentImporter.php, line 54

Class

BlockFieldBlockContentImporter
Class BlockFieldBlockContentImporter.

Namespace

Drupal\entity_share_client\EventSubscriber

Code

public function __construct(RemoteManagerInterface $remote_manager, JsonapiHelperInterface $jsonapi_helper, RequestServiceInterface $request_service) {
  $this->remoteManager = $remote_manager;
  $this->jsonapiHelper = $jsonapi_helper;
  $this->requestService = $request_service;
}