File "IdenticalToValidator.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/symfony/validator/Constraints/IdenticalToValidator.php
File size: 340 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\Validator\Constraints;
if (!defined('ABSPATH')) exit;
class IdenticalToValidator extends AbstractComparisonValidator
{
 protected function compareValues($value1, $value2)
 {
 return $value1 === $value2;
 }
 protected function getErrorCode()
 {
 return IdenticalTo::NOT_IDENTICAL_ERROR;
 }
}