Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity / tests / modules / entity_module_bundle_plugin_test / src / Entity / EntityTestBundlePlugin.php
diff --git a/web/modules/contrib/entity/tests/modules/entity_module_bundle_plugin_test/src/Entity/EntityTestBundlePlugin.php b/web/modules/contrib/entity/tests/modules/entity_module_bundle_plugin_test/src/Entity/EntityTestBundlePlugin.php
deleted file mode 100644 (file)
index 1c75a47..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-namespace Drupal\entity_module_bundle_plugin_test\Entity;
-
-use Drupal\Core\Entity\ContentEntityBase;
-
-/**
- * Defines the 'entity_test_bundle_plugin' entity class.
- *
- * @ContentEntityType(
- *   id = "entity_test_bundle_plugin",
- *   label = @Translation("Entity test bundle plugin"),
- *   bundle_label = @Translation("Bundle Plugin Test"),
- *   bundle_plugin_type = "bundle_plugin_test",
- *   base_table = "entity_test_bundle_plugin",
- *   admin_permission = "administer content",
- *   fieldable = TRUE,
- *   entity_keys = {
- *     "id" = "method_id",
- *     "uuid" = "uuid",
- *     "bundle" = "type"
- *   },
- * )
- */
-class EntityTestBundlePlugin extends ContentEntityBase {
-
-}