/home/bonphmya/wendykred.online/wp-content/plugins/weglot/src/domcheckers/class-button-value.php
<?php

namespace WeglotWP\Domcheckers;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Weglot\Parser\Check\Dom\AbstractDomChecker;
use Weglot\Client\Api\Enum\WordType;


/**
 * @since 2.0.6
 */
class Button_Value extends AbstractDomChecker {
	/**
	 * {@inheritdoc}
	 */
	const DOM = 'button';
	/**
	 * {@inheritdoc}
	 */
	const PROPERTY = 'value';
	/**
	 * @var integer
	 */
	const WORD_TYPE = WordType::VALUE;
}