Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / migrate_drupal / src / Plugin / migrate / CckMigration.php
1 <?php
2
3 namespace Drupal\migrate_drupal\Plugin\migrate;
4
5 @trigger_error('CckMigration is deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.x. Use \Drupal\migrate_drupal\Plugin\migrate\FieldMigration instead.', E_USER_DEPRECATED);
6
7 /**
8  * Migration plugin class for migrations dealing with CCK field values.
9  *
10  * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use
11  * \Drupal\migrate_drupal\Plugin\migrate\FieldMigration instead.
12  *
13  * @see https://www.drupal.org/node/2751897
14  */
15 class CckMigration extends FieldMigration {
16
17   /**
18    * {@inheritdoc}
19    */
20   const PLUGIN_METHOD = 'cck_plugin_method';
21
22 }