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

17 lines
362 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\CatalogElasticBundle\Event;
use KupShop\CatalogElasticBundle\Dto\PreparedSectionQueryInnerState;
use Symfony\Contracts\EventDispatcher\Event;
class SectionAfterExecuteEvent extends Event
{
public function __construct(
public readonly PreparedSectionQueryInnerState $innerStateRef,
) {
}
}