You are here

public function ValidatorBuilder::addXmlMappings in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/ValidatorBuilder.php \Symfony\Component\Validator\ValidatorBuilder::addXmlMappings()

Adds a list of XML constraint mapping files to the validator.

Parameters

array $paths The paths to the mapping files:

Return value

ValidatorBuilderInterface The builder object

Overrides ValidatorBuilderInterface::addXmlMappings

File

vendor/symfony/validator/ValidatorBuilder.php, line 134

Class

ValidatorBuilder
The default implementation of {@link ValidatorBuilderInterface}.

Namespace

Symfony\Component\Validator

Code

public function addXmlMappings(array $paths) {
  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 = array_merge($this->xmlMappings, $paths);
  return $this;
}