Pull merge.
[yaffs-website] / web / core / modules / migrate / src / Plugin / migrate / process / Iterator.php
1 <?php
2
3 namespace Drupal\migrate\Plugin\migrate\process;
4
5 @trigger_error('The ' . __NAMESPACE__ . '\Iterator is deprecated in Drupal 8.4.x and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . '\SubProcess', E_USER_DEPRECATED);
6
7 /**
8  * Iterates and processes an associative array.
9  *
10  * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use
11  *   \Drupal\migrate\Plugin\migrate\process\SubProcess instead.
12  *
13  * @see https://www.drupal.org/node/2880427
14  *
15  * @MigrateProcessPlugin(
16  *   id = "iterator",
17  *   handle_multiples = TRUE
18  * )
19  */
20 class Iterator extends SubProcess {}