Files
core/src/Customer/Events/CustomerAddressDeleted.php
T

18 lines
413 B
PHP
Raw Normal View History

2026-09-15 16:01:28 +03:00
<?php
namespace Modules\Core\Customer\Events;
use Illuminate\Contracts\Auth\Authenticatable;
class CustomerAddressDeleted
{
/**
* @param array<string, mixed> $address Snapshot of the deleted
* row — already gone from the database by dispatch time.
*/
public function __construct(
public readonly array $address,
public readonly Authenticatable $causer,
) {}
}