self::CUSTOMER_EMAIL_NOT_UNIQUE => 'CUSTOMER_EMAIL_NOT_UNIQUE',
];
/**
* @param array{context: Context, salesChannelContext: SalesChannelContext} $options
*
* @internal
*/
public function __construct(array
$options) { if (!
($options['context'
] ?? null
) instanceof Context
) { throw new MissingOptionsException(sprintf('Option "context" must be given for constraint %s', self::
class),
['context'
]);
} if (!
($options['salesChannelContext'
] ?? null
) instanceof SalesChannelContext
) { throw new MissingOptionsException(sprintf('Option "salesChannelContext" must be given for constraint %s', self::
class),
['salesChannelContext'
]);
} parent::
__construct($options);
} public function getContext(): Context
{