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

16 lines
258 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\SalesBundle\Event;
use KupShop\SalesBundle\Entity\Sale;
use Symfony\Contracts\EventDispatcher\Event;
class SaleCreatedEvent extends Event
{
public function __construct(public Sale $sale)
{
}
}