Delete WC card payment token if it does not exist on PayPal

This commit is contained in:
Emili Castells Guasch 2024-03-19 16:26:50 +01:00
parent ad7e7cbe55
commit 8ea790fedd
2 changed files with 29 additions and 1 deletions

View file

@ -135,6 +135,7 @@ return array(
$container->get( 'api.endpoint.order' ),
$container->get( 'wcgateway.endpoint.capture-card-payment' ),
$container->get( 'api.prefix' ),
$container->get( 'api.endpoint.payment-tokens' ),
$logger
);
},
@ -1587,7 +1588,7 @@ return array(
)
);
},
'wcgateway.endpoint.capture-card-payment' => static function( ContainerInterface $container ): CaptureCardPayment {
'wcgateway.endpoint.capture-card-payment' => static function( ContainerInterface $container ): CaptureCardPayment {
return new CaptureCardPayment(
$container->get( 'api.host' ),
$container->get( 'api.bearer' ),