21 lines
549 B
PHP
21 lines
549 B
PHP
<?php
|
|
|
|
namespace Modules\Core\Checkout\Events;
|
|
|
|
use Lunar\Models\Cart;
|
|
|
|
/**
|
|
* Dispatched by CheckoutService::setRecoveryConsent() every time the
|
|
* shopper's promotional/abandoned-cart-recovery opt-in changes — including
|
|
* an explicit opt-OUT (a later submit with the checkbox unticked), not
|
|
* just an opt-in. $consent is the new value, already written to
|
|
* Cart::meta by the time this fires.
|
|
*/
|
|
class RecoveryConsentSet
|
|
{
|
|
public function __construct(
|
|
public readonly Cart $cart,
|
|
public readonly bool $consent,
|
|
) {}
|
|
}
|