You are here

protected function DeleteContentCommand::configure in Tome 8

Overrides ImportCommand::configure

File

modules/tome_sync/src/Commands/DeleteContentCommand.php, line 48

Class

DeleteContentCommand
Contains the tome:delete-content command.

Namespace

Drupal\tome_sync\Commands

Code

protected function configure() {
  $this
    ->setName('tome:delete-content')
    ->setDescription('Deletes or removes translations for the given content.')
    ->addArgument('chunk', InputArgument::REQUIRED, 'A comma separated list of content names in the format entity_type_id:id or entity_type_id:id:langcode.');
}