You are here

protected function SqlImportCommand::execute in MongoDB 8.2

File

modules/mongodb_storage/src/Command/SqlImportCommand.php, line 58

Class

SqlImportCommand
Provides the commands.mongodb.storage.import_keyvalue console command.

Namespace

Drupal\mongodb_storage\Command

Code

protected function execute(InputInterface $input, OutputInterface $output) {
  $out = $this->sqlImport
    ->import();
  $this
    ->getIo()
    ->writeln($out);
}