From 81ea74f092762e2feef7055371a26ce412944e14 Mon Sep 17 00:00:00 2001 From: Maxime Leclercq Date: Tue, 19 Mar 2024 11:14:03 +0100 Subject: [PATCH] fix: remove final in entity classes --- dist/src/Entity/Shipping/ShippingSlotConfig.php | 2 +- dist/src/Entity/Shipping/Slot.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/src/Entity/Shipping/ShippingSlotConfig.php b/dist/src/Entity/Shipping/ShippingSlotConfig.php index a0609a0..28c08e7 100644 --- a/dist/src/Entity/Shipping/ShippingSlotConfig.php +++ b/dist/src/Entity/Shipping/ShippingSlotConfig.php @@ -20,6 +20,6 @@ * @ORM\Entity * @ORM\Table(name="monsieurbiz_shipping_slot_config") */ -final class ShippingSlotConfig extends BaseShippingSlotConfig +class ShippingSlotConfig extends BaseShippingSlotConfig { } diff --git a/dist/src/Entity/Shipping/Slot.php b/dist/src/Entity/Shipping/Slot.php index bc756f1..1c3c415 100644 --- a/dist/src/Entity/Shipping/Slot.php +++ b/dist/src/Entity/Shipping/Slot.php @@ -20,6 +20,6 @@ * @ORM\Entity * @ORM\Table(name="monsieurbiz_shipping_slot_slot") */ -final class Slot extends BaseSlot +class Slot extends BaseSlot { }