Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / migrate_drupal / tests / modules / migrate_cckfield_plugin_manager_test / src / Plugin / migrate / cckfield / D6FileField.php
index 529907a35f0e8c883ba02e42800a108098ca5f60..1b43724991204778f12a685a6673177a474ba150 100644 (file)
@@ -19,11 +19,10 @@ class D6FileField extends CckFieldPluginBase {
   /**
    * {@inheritdoc}
    */
-  public function getFieldFormatterMap() {}
-
-  /**
-   * {@inheritdoc}
-   */
-  public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {}
+  public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {
+    $migration->setProcessOfProperty($field_name, [
+      'class' => static::class,
+    ]);
+  }
 
 }