You are here

public function Sql::processedCount in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::processedCount()
  2. 9 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::processedCount()

Returns the number of processed items in the map.

Return value

int The count of records in the map table.

Overrides MigrateIdMapInterface::processedCount

File

core/modules/migrate/src/Plugin/migrate/id_map/Sql.php, line 754

Class

Sql
Defines the sql based ID map implementation.

Namespace

Drupal\migrate\Plugin\migrate\id_map

Code

public function processedCount() {
  return $this
    ->countHelper(NULL, $this
    ->mapTableName());
}