* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\ConstraintValidator\Constraints; use PrestaShop\PrestaShop\Core\ConstraintValidator\AddressStateRequiredValidator; use Symfony\Component\Validator\Constraint; /** * Validation constraint for address state choice by selected country value */ class AddressStateRequired extends Constraint { public $message = 'An address located in a country containing states must have a state selected.'; public $id_country; /** * {@inheritdoc} */ public function validatedBy() { return AddressStateRequiredValidator::class; } public function getRequiredOptions() { return ['id_country']; } }