protected function Soap::fetchNextRow in Migrate Plus 8.3
Same name and namespace in other branches
- 8.5 src/Plugin/migrate_plus/data_parser/Soap.php \Drupal\migrate_plus\Plugin\migrate_plus\data_parser\Soap::fetchNextRow()
- 8.2 src/Plugin/migrate_plus/data_parser/Soap.php \Drupal\migrate_plus\Plugin\migrate_plus\data_parser\Soap::fetchNextRow()
- 8.4 src/Plugin/migrate_plus/data_parser/Soap.php \Drupal\migrate_plus\Plugin\migrate_plus\data_parser\Soap::fetchNextRow()
Retrieves the next row of data from the open source URL, populating currentItem.
Overrides DataParserPluginBase::fetchNextRow
File
- src/
Plugin/ migrate_plus/ data_parser/ Soap.php, line 113
Class
- Soap
- Obtain SOAP data for migration.
Namespace
Drupal\migrate_plus\Plugin\migrate_plus\data_parserCode
protected function fetchNextRow() {
$current = $this->iterator
->current();
if ($current) {
foreach ($this
->fieldSelectors() as $field_name => $selector) {
$this->currentItem[$field_name] = $current->{$selector};
}
$this->iterator
->next();
}
}