You are here

public function PathAliasConstraintValidator::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/path/src/Plugin/Validation/Constraint/PathAliasConstraintValidator.php \Drupal\path\Plugin\Validation\Constraint\PathAliasConstraintValidator::__construct()

Creates a new PathAliasConstraintValidator instance.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

File

core/modules/path/src/Plugin/Validation/Constraint/PathAliasConstraintValidator.php, line 29

Class

PathAliasConstraintValidator
Constraint validator for changing path aliases in pending revisions.

Namespace

Drupal\path\Plugin\Validation\Constraint

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager) {
  $this->entityTypeManager = $entity_type_manager;
}