You are here

public function MigrateExecutable::getIgnoredCount in Migrate Tools 8.4

Same name and namespace in other branches
  1. 8.5 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIgnoredCount()
  2. 8 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIgnoredCount()
  3. 8.2 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIgnoredCount()
  4. 8.3 src/MigrateExecutable.php \Drupal\migrate_tools\MigrateExecutable::getIgnoredCount()

Return the number of items ignored.

Return value

int The ignored count.

1 call to MigrateExecutable::getIgnoredCount()
MigrateExecutable::progressMessage in src/MigrateExecutable.php
Emit information on what we've done.

File

src/MigrateExecutable.php, line 180

Class

MigrateExecutable
Defines a migrate executable class for drush.

Namespace

Drupal\migrate_tools

Code

public function getIgnoredCount() {
  return $this->saveCounters[MigrateIdMapInterface::STATUS_IGNORED];
}