You are here

public function ValidatorBuilder::addYamlMapping in Zircon Profile 8

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

Adds a YAML constraint mapping file to the validator.

Parameters

string $path The path to the mapping file:

Return value

ValidatorBuilderInterface The builder object

Overrides ValidatorBuilderInterface::addYamlMapping

File

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

Class

ValidatorBuilder
The default implementation of {@link ValidatorBuilderInterface}.

Namespace

Symfony\Component\Validator

Code

public function addYamlMapping($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->yamlMappings[] = $path;
  return $this;
}