You are here

public function MultipleValues::multiple in Migrate Plus 8.5

Same name and namespace in other branches
  1. 8.4 src/Plugin/migrate/process/MultipleValues.php \Drupal\migrate_plus\Plugin\migrate\process\MultipleValues::multiple()

Indicates whether the returned value requires multiple handling.

Return value

bool TRUE when the returned value contains a list of values to be processed. For example, when the 'source' property is a string and the value found is an array.

Overrides ProcessPluginBase::multiple

File

src/Plugin/migrate/process/MultipleValues.php, line 54

Class

MultipleValues
Treat an array of values as a separate / individual values.

Namespace

Drupal\migrate_plus\Plugin\migrate\process

Code

public function multiple() {
  return TRUE;
}