19 lines
392 B
PHP
19 lines
392 B
PHP
<?php
|
|
|
|
namespace Modules\Core\Cart\Events;
|
|
|
|
use Lunar\Models\Cart;
|
|
use Lunar\Models\CartLine;
|
|
|
|
/**
|
|
* The reverse of CartLineSaved — a previously saved-for-later line moved back
|
|
* into the purchasable cart (now counted in totals again).
|
|
*/
|
|
class CartLineMovedToCart
|
|
{
|
|
public function __construct(
|
|
public readonly Cart $cart,
|
|
public readonly CartLine $line,
|
|
) {}
|
|
}
|