18 lines
413 B
PHP
18 lines
413 B
PHP
<?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,
|
|
) {}
|
|
}
|