You are here

public function SourcePluginBase::rewind in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::rewind()

Rewinds the iterator.

Implementation of \Iterator::rewind() - subclasses of SourcePluginBase should implement initializeIterator() to do any class-specific setup for iterating source records.

File

core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php, line 379

Class

SourcePluginBase
The base class for source plugins.

Namespace

Drupal\migrate\Plugin\migrate\source

Code

public function rewind() {
  $this
    ->getIterator()
    ->rewind();
  $this
    ->next();
}