Spaces:
No application file
No application file
File size: 818 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<?php
namespace Mautic\CampaignBundle\Executioner\Dispatcher;
use Mautic\CampaignBundle\CampaignEvents;
use Mautic\CampaignBundle\Entity\LeadEventLog;
use Mautic\CampaignBundle\Event\ConditionEvent;
use Mautic\CampaignBundle\EventCollector\Accessor\Event\ConditionAccessor;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class ConditionDispatcher
{
public function __construct(
private EventDispatcherInterface $dispatcher
) {
}
public function dispatchEvent(ConditionAccessor $config, LeadEventLog $log): ConditionEvent
{
$event = new ConditionEvent($config, $log);
$this->dispatcher->dispatch($event, $config->getEventName());
$this->dispatcher->dispatch($event, CampaignEvents::ON_EVENT_CONDITION_EVALUATION);
return $event;
}
}
|