19 lines
506 B
PHP
19 lines
506 B
PHP
<?php
|
|
|
|
namespace Modules\Core\Cart\Events;
|
|
|
|
use Lunar\Models\Cart;
|
|
|
|
class CartLineRemoved
|
|
{
|
|
/**
|
|
* @param array{id: int, purchasable_type: string, purchasable_id: int, quantity: int, meta: array} $line
|
|
* Snapshot of the removed line — the row is already deleted by the time this
|
|
* event dispatches, so nothing here can be a fresh CartLine model instance.
|
|
*/
|
|
public function __construct(
|
|
public readonly Cart $cart,
|
|
public readonly array $line,
|
|
) {}
|
|
}
|