mautic / app /bundles /LeadBundle /Field /Event /UpdateColumnBackgroundEvent.php
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 UpdateColumnBackgroundEvent extends Event
{
public function __construct(private LeadField $leadField)
{
}
public function getLeadField(): LeadField
{
return $this->leadField;
}
}