Updated to Drupal 8.5. Core Media not yet in use.
[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 Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . '\MigrationLookup', E_USER_DEPRECATED);
6
7 /**
8  * Calculates the value of a property based on a previous migration.
9  *
10  * @link https://www.drupal.org/node/2149801 Online handbook documentation for migration process plugin @endlink
11  *
12  * @MigrateProcessPlugin(
13  *   id = "migration"
14  * )
15  *
16  * @deprecated in Drupal 8.3.x and will be removed in Drupal 9.0.x.
17  *  Use \Drupal\migrate\Plugin\migrate\process\MigrationLookup instead.
18  */
19 class Migration extends MigrationLookup {}