You are here

public function ValidatorBuilder::addYamlMappings in Plug 7

Adds a list of YAML constraint mappings file to the validator.

Parameters

array $paths The paths to the mapping files:

Return value

ValidatorBuilderInterface The builder object

Overrides ValidatorBuilderInterface::addYamlMappings

File

lib/Symfony/validator/Symfony/Component/Validator/ValidatorBuilder.php, line 170

Class

ValidatorBuilder
The default implementation of {@link ValidatorBuilderInterface}.

Namespace

Symfony\Component\Validator

Code

public function addYamlMappings(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->yamlMappings = array_merge($this->yamlMappings, $paths);
  return $this;
}