5400e1870a81e0efe53f404ccda54e4a5f8d60fe
[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
6 Drupal 8.4.x and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . '\SubProcess', E_USER_DEPRECATED);
7
8 /**
9  * Iterates and processes an associative array.
10  *
11  * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use
12  *   \Drupal\migrate\Plugin\migrate\process\SubProcess instead.
13  *
14  * @see https://www.drupal.org/node/2880427
15  *
16  * @MigrateProcessPlugin(
17  *   id = "iterator",
18  *   handle_multiples = TRUE
19  * )
20  */
21 class Iterator extends SubProcess {}