public function ConstraintViolation::getMessageParameters in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/ConstraintViolation.php \Symfony\Component\Validator\ConstraintViolation::getMessageParameters()
Overrides ConstraintViolationInterface::getMessageParameters
Deprecated
since version 2.7, to be removed in 3.0. Use getParameters() instead
File
- vendor/
symfony/ validator/ ConstraintViolation.php, line 148
Class
- ConstraintViolation
- Default implementation of {@ConstraintViolationInterface}.
Namespace
Symfony\Component\ValidatorCode
public function getMessageParameters() {
@trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.7, to be removed in 3.0. Use the ConstraintViolation::getParameters() method instead.', E_USER_DEPRECATED);
return $this->parameters;
}