You are here

public function RecursiveValidator::validatePropertyValue in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/validator/Validator/RecursiveValidator.php \Symfony\Component\Validator\Validator\RecursiveValidator::validatePropertyValue()
  2. 8 core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php \Drupal\Core\TypedData\Validation\RecursiveValidator::validatePropertyValue()
Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php \Drupal\Core\TypedData\Validation\RecursiveValidator::validatePropertyValue()

Validates a value against the constraints specified for an object's property.

Parameters

object|string $objectOrClass The object or its class name:

string $propertyName The name of the property:

mixed $value The value to validate against the: property's constraints

array|null $groups The validation groups to validate. If: none is given, "Default" is assumed

Return value

ConstraintViolationListInterface A list of constraint violations. If the list is empty, validation succeeded

Overrides ValidatorInterface::validatePropertyValue

File

core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php, line 111
Contains \Drupal\Core\TypedData\Validation\RecursiveValidator.

Class

RecursiveValidator
Defines a recursive validator for Typed Data.

Namespace

Drupal\Core\TypedData\Validation

Code

public function validatePropertyValue($objectOrClass, $propertyName, $value, $groups = NULL) {

  // Just passing a class name is not supported.
  if (!is_object($objectOrClass)) {
    throw new \LogicException('Typed data validation does not support passing the class name only.');
  }
  return $this
    ->startContext($objectOrClass)
    ->validatePropertyValue($objectOrClass, $propertyName, $value, $groups)
    ->getViolations();
}