17 lines
362 B
PHP
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,
|
|
) {
|
|
}
|
|
}
|