Feature: Moving Payment Methods to DB, adding fees, Transaction Updates, Refund Updates, General Updates to Payments
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Core\Payment\Events;
|
||||
|
||||
class PaymentMethodDeleted
|
||||
{
|
||||
/**
|
||||
* @param array<string, mixed> $method Snapshot of the deleted row —
|
||||
* already gone from the database by dispatch time, so this can't be
|
||||
* a fresh PaymentMethod model instance.
|
||||
*/
|
||||
public function __construct(
|
||||
public readonly array $method,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user