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

20 lines
357 B
PHP

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