Spaces:
No application file
No application file
declare(strict_types=1); | |
namespace Mautic\LeadBundle\Form\Validator\Constraints; | |
use Symfony\Component\Validator\Constraint; | |
class UniqueCustomField extends Constraint | |
{ | |
public string $message = 'mautic.lead.field.unique.is_used'; | |
public string $object; | |
public function getTargets() | |
{ | |
return self::CLASS_CONSTRAINT; | |
} | |
} | |