224388b1468bf547a479c1f49f43e81e5108ead3
[yaffs-website] / web / core / modules / migrate_drupal / tests / modules / migrate_field_plugin_manager_test / src / Plugin / migrate / field / D6NoCoreVersionSpecified.php
1 <?php
2
3 namespace Drupal\migrate_field_plugin_manager_test\Plugin\migrate\field;
4
5 use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
6 use Drupal\migrate\Plugin\MigrationInterface;
7
8 /**
9  * @MigrateField(
10  *   id = "d6_no_core_version_specified"
11  * )
12  */
13 class D6NoCoreVersionSpecified extends FieldPluginBase {
14
15   /**
16    * {@inheritdoc}
17    */
18   public function getFieldFormatterMap() {
19     return [];
20   }
21
22   /**
23    * {@inheritdoc}
24    */
25   public function processFieldValues(MigrationInterface $migration, $field_name, $data) {}
26
27 }