public function LengthConstraint::validatedBy in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/LengthConstraint.php \Drupal\Core\Validation\Plugin\Validation\Constraint\LengthConstraint::validatedBy()
Returns the name of the class that validates this constraint.
By default, this is the fully qualified name of the constraint class suffixed with "Validator". You can override this method to change that behaviour.
Return value
string
Overrides Constraint::validatedBy
File
- core/
lib/ Drupal/ Core/ Validation/ Plugin/ Validation/ Constraint/ LengthConstraint.php, line 34 - Contains \Drupal\Core\Validation\Plugin\Validation\Constraint\LengthConstraint.
Class
- LengthConstraint
- Length constraint.
Namespace
Drupal\Core\Validation\Plugin\Validation\ConstraintCode
public function validatedBy() {
return '\\Symfony\\Component\\Validator\\Constraints\\LengthValidator';
}