public function ValidatorBuilder::addXmlMapping in Plug 7
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
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ ValidatorBuilder.php, line 128
Class
- ValidatorBuilder
- The default implementation of {@link ValidatorBuilderInterface}.
Namespace
Symfony\Component\ValidatorCode
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;
}