chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
declare(strict_types=1);
namespace Mautic\LeadBundle\Field\Event;
use Mautic\LeadBundle\Entity\LeadField;
use Symfony\Contracts\EventDispatcher\Event;
final class AddColumnEvent extends Event
{
public function __construct(
private LeadField $leadField,
private bool $shouldProcessInBackground
) {
}
public function getLeadField(): LeadField
{
return $this->leadField;
}
public function shouldProcessInBackground(): bool
{
return $this->shouldProcessInBackground;
}
}