File "GooglePriceConstraint.php"

Full Path: /home/warrior1/public_html/plugins/google-listings-and-ads/src/Validator/GooglePriceConstraint.php
File size: 429 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Validator;

use Symfony\Component\Validator\Constraint;

defined( 'ABSPATH' ) || exit;

/**
 * Class GooglePriceConstraint
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Validator
 */
class GooglePriceConstraint extends Constraint {
	/**
	 * @var string
	 */
	public $message = 'Product must have a valid price and currency.';
}