You are here

public function LinkTypeConstraint::validatedBy in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/link/src/Plugin/Validation/Constraint/LinkTypeConstraint.php \Drupal\link\Plugin\Validation\Constraint\LinkTypeConstraint::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/modules/link/src/Plugin/Validation/Constraint/LinkTypeConstraint.php, line 42
Contains \Drupal\link\Plugin\Validation\Constraint\LinkTypeConstraint.

Class

LinkTypeConstraint
Validation constraint for links receiving data allowed by its settings.

Namespace

Drupal\link\Plugin\Validation\Constraint

Code

public function validatedBy() {
  return get_class($this);
}