Files
kupshop/bundles/KupShop/OrderingBundle/Event/DeliveryCheckEvent.php
2025-08-02 16:30:27 +02:00

21 lines
395 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\OrderingBundle\Event;
use KupShop\OrderingBundle\Cart;
use Symfony\Contracts\EventDispatcher\Event;
class DeliveryCheckEvent extends Event
{
public \Delivery $delivery;
public Cart $cart;
public function __construct(\Delivery $delivery, Cart $cart)
{
$this->delivery = $delivery;
$this->cart = $cart;
}
}