public function ConstraintViolation::getRoot in Plug 7
Returns the root element of the validation.
@api
Return value
mixed The value that was passed originally to the validator when the validation was started. Because the validator traverses the object graph, the value at which the violation occurs is not necessarily the value that was originally validated.
Overrides ConstraintViolationInterface::getRoot
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ ConstraintViolation.php, line 185
Class
- ConstraintViolation
- Default implementation of {@ConstraintViolationInterface}.
Namespace
Symfony\Component\ValidatorCode
public function getRoot() {
return $this->root;
}