protected function PullCommand::setupIo in Entity Share 8.2
Same name and namespace in other branches
- 8 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 66
Class
- PullCommand
- Class PullCommand.
Namespace
Drupal\entity_share_client\CommandCode
protected function setupIo(InputInterface $input, OutputInterface $output) {
$this->io = new DrupalStyle($input, $output);
}