Event dispatched after a payment is deleted.
Typical use case is to perform additional operations after payment deletion (e.g. logging, cache purge, reindexing, etc.)
The following example logs the deletion of the payment:
final class PaymentEventSubscriber implements EventSubscriberInterface
{
private function __construct(private LoggerInterface $logger)
{
}
public static function getSubscribedEvents(): array
{
return [
DeletePaymentEvent::class => 'onDeletePayment',
];
}
public function onDeletePayment(DeletePaymentEvent $event): void
{
$payment = $event->getPayment();
$this->logger->info(
'Payment {identifier} has been deleted',
[
'name' => $payment->getIdentifier()
]
);
}
}
Tags
Methods¶
__construct() ¶
DeletePaymentEvent.php
:
55
|
|
Parameters
Name | Type | Default value | Description |
---|---|---|---|
$payment | PaymentInterface | - | - |
getPayment() ¶
DeletePaymentEvent.php
:
63
Returns the payment that has been deleted.
|
|