Skip to content

Commit

Permalink
Merge branch 'fix/main/CS-6247' into prepare-release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamara committed Dec 6, 2024
2 parents 0c874e4 + 26a989d commit 3644f2a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/AdyenPaymentShopware6.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@

namespace Adyen\Shopware;

use Adyen\Shopware\Entity\AdyenPayment\AdyenPaymentEntityDefinition;
use Adyen\Shopware\Entity\Notification\NotificationEntityDefinition;
use Adyen\Shopware\Entity\PaymentCapture\PaymentCaptureEntityDefinition;
use Adyen\Shopware\Entity\PaymentResponse\PaymentResponseEntityDefinition;
use Adyen\Shopware\Entity\PaymentStateData\PaymentStateDataEntityDefinition;
use Adyen\Shopware\Entity\Refund\RefundEntityDefinition;
use Adyen\Shopware\Handlers\KlarnaDebitRiskPaymentMethodHandler;
use Adyen\Shopware\PaymentMethods\KlarnaDebitRiskPaymentMethod;
use Adyen\Shopware\Service\ConfigurationService;
Expand Down Expand Up @@ -278,7 +281,10 @@ private function removePluginData(): void
$tables = [
NotificationEntityDefinition::ENTITY_NAME,
PaymentStateDataEntityDefinition::ENTITY_NAME,
PaymentResponseEntityDefinition::ENTITY_NAME
PaymentResponseEntityDefinition::ENTITY_NAME,
AdyenPaymentEntityDefinition::ENTITY_NAME,
PaymentCaptureEntityDefinition::ENTITY_NAME,
RefundEntityDefinition::ENTITY_NAME
];
$connection = $this->container->get(Connection::class);
foreach ($tables as $table) {
Expand Down

0 comments on commit 3644f2a

Please sign in to comment.