public function EntityShareClientCommands::__construct in Entity Share 8.3
Same name and namespace in other branches
- 8 modules/entity_share_client/src/Commands/EntityShareClientCommands.php \Drupal\entity_share_client\Commands\EntityShareClientCommands::__construct()
- 8.2 modules/entity_share_client/src/Commands/EntityShareClientCommands.php \Drupal\entity_share_client\Commands\EntityShareClientCommands::__construct()
EntityShareClientCommands constructor.
Parameters
\Drupal\entity_share_client\Service\EntityShareClientCliService $cliService: The CLI service which allows interoperability.
\Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager: The entity type manager.
\Drupal\entity_share_client\Service\RemoteManagerInterface $remoteManager: The remote manager.
File
- modules/
entity_share_client/ src/ Commands/ EntityShareClientCommands.php, line 57
Class
- EntityShareClientCommands
- Class EntityShareClientCommands.
Namespace
Drupal\entity_share_client\CommandsCode
public function __construct(EntityShareClientCliService $cliService, EntityTypeManagerInterface $entityTypeManager, RemoteManagerInterface $remoteManager) {
parent::__construct();
$this->cliService = $cliService;
$this->entityTypeManager = $entityTypeManager;
$this->remoteManager = $remoteManager;
}