Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity / tests / modules / entity_module_bundle_plugin_test / src / Plugin / BundlePluginTest / First.php
diff --git a/web/modules/contrib/entity/tests/modules/entity_module_bundle_plugin_test/src/Plugin/BundlePluginTest/First.php b/web/modules/contrib/entity/tests/modules/entity_module_bundle_plugin_test/src/Plugin/BundlePluginTest/First.php
deleted file mode 100644 (file)
index 728a90b..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-namespace Drupal\entity_module_bundle_plugin_test\Plugin\BundlePluginTest;
-
-use Drupal\entity\BundleFieldDefinition;
-use Drupal\Core\Plugin\PluginBase;
-
-/**
- * Provides the first bundle plugin.
- *
- * @BundlePluginTest(
- *   id = "first",
- *   label = @Translation("First"),
- *   description = @Translation("Some description"),
- * )
- */
-class First extends PluginBase implements BundlePluginTestInterface {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildFieldDefinitions() {
-    $fields = [];
-    $fields['first_mail'] = BundleFieldDefinition::create('email')
-      ->setLabel(t('Email'))
-      ->setRequired(TRUE);
-
-    return $fields;
-  }
-
-}