public function ValidatorBuilder::setMetadataCache in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/ValidatorBuilder.php \Symfony\Component\Validator\ValidatorBuilder::setMetadataCache()
Sets the cache for caching class metadata.
Parameters
CacheInterface $cache The cache instance:
Return value
ValidatorBuilderInterface The builder object
Overrides ValidatorBuilderInterface::setMetadataCache
File
- vendor/
symfony/ validator/ ValidatorBuilder.php, line 250
Class
- ValidatorBuilder
- The default implementation of {@link ValidatorBuilderInterface}.
Namespace
Symfony\Component\ValidatorCode
public function setMetadataCache(CacheInterface $cache) {
if (null !== $this->metadataFactory) {
throw new ValidatorException('You cannot set a custom metadata cache after setting a custom metadata factory. Configure your metadata factory instead.');
}
$this->metadataCache = $cache;
return $this;
}