13 lines
215 B
PHP
13 lines
215 B
PHP
<?php
|
|
|
|
namespace Modules\Core\Payment\Events;
|
|
|
|
use Modules\Core\Payment\Models\PaymentMethod;
|
|
|
|
class PaymentMethodCreated
|
|
{
|
|
public function __construct(
|
|
public readonly PaymentMethod $method,
|
|
) {}
|
|
}
|