public function ValidatorBuilder::addXmlMapping

Adds an XML constraint mapping file to the validator.

Parameters

string $path The path to the mapping file.:

Return value

ValidatorBuilderInterface The builder object.

Overrides ValidatorBuilderInterface::addXmlMapping

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/ValidatorBuilder.php, line 110

Class

ValidatorBuilder
The default implementation of {@link ValidatorBuilderInterface}.

Namespace

Symfony\Component\Validator

Code

public function addXmlMapping($path) {
  if (null !== $this->metadataFactory) {
    throw new ValidatorException('You cannot add custom mappings after setting a custom metadata factory. Configure your metadata factory instead.');
  }
  $this->xmlMappings[] = $path;
  return $this;
}