You are here

protected function PullCommand::setupIo in Entity Share 8

Same name and namespace in other branches
  1. 8.2 modules/entity_share_client/src/Command/PullCommand.php \Drupal\entity_share_client\Command\PullCommand::setupIo()

Set up the io interface.

Parameters

\Symfony\Component\Console\Input\InputInterface $input: The input interface.

\Symfony\Component\Console\Output\OutputInterface $output: The output interface.

1 call to PullCommand::setupIo()
PullCommand::execute in modules/entity_share_client/src/Command/PullCommand.php
Executes the current command.

File

modules/entity_share_client/src/Command/PullCommand.php, line 64

Class

PullCommand
Class PullCommand.

Namespace

Drupal\entity_share_client\Command

Code

protected function setupIo(InputInterface $input, OutputInterface $output) {
  $this->io = new DrupalStyle($input, $output);
}