73949e138331e56b269874a1dca3f3419862bfcd
[yaffs-website] / web / core / modules / migrate_drupal / src / Annotation / MigrateCckField.php
1 <?php
2
3 namespace Drupal\migrate_drupal\Annotation;
4
5 @trigger_error('MigrateCckField is deprecated in Drupal 8.3.x and will be
6 removed before Drupal 9.0.x. Use \Drupal\migrate_drupal\Annotation\MigrateField
7 instead.', E_USER_DEPRECATED);
8
9 /**
10  * Deprecated: Defines a cckfield plugin annotation object.
11  *
12  * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use
13  * \Drupal\migrate_drupal\Annotation\MigrateField instead.
14  *
15  * Plugin Namespace: Plugin\migrate\cckfield
16  *
17  * @Annotation
18  */
19 class MigrateCckField extends MigrateField {
20
21 }