You are here

protected function CacheableEmbeddedDataSource::doCount in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/modules/migrate_cache_counts_test/src/Plugin/migrate/source/CacheableEmbeddedDataSource.php \Drupal\migrate_cache_counts_test\Plugin\migrate\source\CacheableEmbeddedDataSource::doCount()

Gets the source count checking if the source is countable or using the iterator_count function.

Return value

int

Overrides SourcePluginBase::doCount

File

core/modules/migrate/tests/modules/migrate_cache_counts_test/src/Plugin/migrate/source/CacheableEmbeddedDataSource.php, line 29

Class

CacheableEmbeddedDataSource
A copy of embedded_data which allows caching the count.

Namespace

Drupal\migrate_cache_counts_test\Plugin\migrate\source

Code

protected function doCount() {
  return parent::count(TRUE);
}