Spaces:
No application file
No application file
declare(strict_types=1); | |
namespace Mautic\LeadBundle\Field\Event; | |
use Mautic\LeadBundle\Entity\LeadField; | |
use Symfony\Contracts\EventDispatcher\Event; | |
final class AddColumnBackgroundEvent extends Event | |
{ | |
public function __construct( | |
private LeadField $leadField | |
) { | |
} | |
public function getLeadField(): LeadField | |
{ | |
return $this->leadField; | |
} | |
} | |