Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / migrate_drupal / tests / modules / migrate_field_plugin_manager_test / src / Plugin / migrate / cckfield / d6 / FileField.php
diff --git a/web/core/modules/migrate_drupal/tests/modules/migrate_field_plugin_manager_test/src/Plugin/migrate/cckfield/d6/FileField.php b/web/core/modules/migrate_drupal/tests/modules/migrate_field_plugin_manager_test/src/Plugin/migrate/cckfield/d6/FileField.php
deleted file mode 100644 (file)
index 903c7e8..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace Drupal\migrate_field_plugin_manager_test\Plugin\migrate\cckfield\d6;
-
-use Drupal\migrate\Plugin\MigrationInterface;
-use Drupal\migrate_drupal\Plugin\migrate\cckfield\CckFieldPluginBase;
-
-/**
- * @MigrateCckField(
- *   id = "filefield",
- *   core = {6}
- * )
- */
-class FileField extends CckFieldPluginBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getFieldFormatterMap() {
-    return [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {
-    $migration->mergeProcessOfProperty($field_name, [
-      'class' => __CLASS__,
-    ]);
-  }
-
-}