From 99cbca9241ef5151d21de4bc23e784f81f20fb05 Mon Sep 17 00:00:00 2001
From: Alex Pott <1732-alexpott@users.noreply.drupalcode.org>
Date: Mon, 9 Sep 2024 16:28:00 +0000
Subject: [PATCH] Issue #3466777 Removed declaration of PurgeType as a bundle
 config entity

---
 src/Entity/PurgeType.php | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/Entity/PurgeType.php b/src/Entity/PurgeType.php
index 9dc20d6..467d56b 100644
--- a/src/Entity/PurgeType.php
+++ b/src/Entity/PurgeType.php
@@ -5,7 +5,7 @@ declare(strict_types=1);
 namespace Drupal\entity_purge\Entity;
 
 use Drupal\entity_purge\Configurator\PluginInterface;
-use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
+use Drupal\Core\Config\Entity\ConfigEntityBase;
 
 /**
  * The default implementation of the Purge Type configuration entity.
@@ -30,8 +30,7 @@ use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
  *   entity_keys = {
  *     "id" = "id",
  *     "label" = "label",
- *     "uuid" = "uuid",
- *     "bundle" = "plugin_id",
+ *     "uuid" = "uuid"
  *   },
  *   config_export = {
  *     "id",
@@ -43,7 +42,7 @@ use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
  *   },
  * )
  */
-class PurgeType extends ConfigEntityBundleBase implements
+class PurgeType extends ConfigEntityBase implements
   PurgeTypeInterface {
 
   /**
-- 
GitLab