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

20 lines
446 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;
use Lunar\Models\Address;
class CustomerAddressUpdated
{
/**
* @param array<string, mixed> $old Snapshot of the changed
* attributes before the update.
*/
public function __construct(
public readonly Address $address,
public readonly array $old,
public readonly Authenticatable $causer,
) {}
}