You are here

public function Debug::multiple in Migrate Devel 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/migrate/process/Debug.php \Drupal\migrate_devel\Plugin\migrate\process\Debug::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/Debug.php, line 79

Class

Debug
Debug the process pipeline.

Namespace

Drupal\migrate_devel\Plugin\migrate\process

Code

public function multiple() {
  return !empty($this->configuration['multiple']);
}