TestFieldConstraint.php
Namespace
Drupal\field_test\Plugin\Validation\ConstraintFile
- 
              core/
modules/ field/ tests/ modules/ field_test/ src/ Plugin/ Validation/ Constraint/ TestFieldConstraint.php  
View source
<?php
namespace Drupal\field_test\Plugin\Validation\Constraint;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Validation\Attribute\Constraint;
use Symfony\Component\Validator\Constraints\NotEqualTo;
/**
 * Checks if a value is not equal.
 */
class TestFieldConstraint extends NotEqualTo {
  
  /**
   * {@inheritdoc}
   */
  public function getRequiredOptions() {
    return [
      'value',
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  public function validatedBy() {
    return '\\Symfony\\Component\\Validator\\Constraints\\NotEqualToValidator';
  }
}
Classes
| Title | Deprecated | Summary | 
|---|---|---|
| TestFieldConstraint | Checks if a value is not equal. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.