ef8ad72c3cbb812e7b3f941e5963d43782294a9c
[yaffs-website] / web / core / modules / migrate / src / Plugin / migrate / process / Migration.php
1 <?php
2
3 namespace Drupal\migrate\Plugin\migrate\process;
4
5 @trigger_error('The ' . __NAMESPACE__ . '\Migration is deprecated in
6 Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . '\MigrationLookup', E_USER_DEPRECATED);
7
8 /**
9  * Calculates the value of a property based on a previous migration.
10  *
11  * @link https://www.drupal.org/node/2149801 Online handbook documentation for migration process plugin @endlink
12  *
13  * @MigrateProcessPlugin(
14  *   id = "migration"
15  * )
16  *
17  * @deprecated in Drupal 8.3.x and will be removed in Drupal 9.0.x.
18  *  Use \Drupal\migrate\Plugin\migrate\process\MigrationLookup instead.
19  */
20 class Migration extends MigrationLookup {}