diff --git a/core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php b/core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php index e72dea2b7b05d2d5736c157d7d8c2dca976d8279..f1ed53f6ecaf387ba0693229b02ea9d7b4c5a20b 100644 --- a/core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php +++ b/core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php @@ -5,6 +5,7 @@ use Drupal\Core\TypedData\TypedDataInterface; use Drupal\Core\TypedData\TypedDataManagerInterface; use Symfony\Component\Validator\ConstraintValidatorFactoryInterface; +use Symfony\Component\Validator\ConstraintViolationListInterface; use Symfony\Component\Validator\Context\ExecutionContextFactoryInterface; use Symfony\Component\Validator\Context\ExecutionContextInterface; use Symfony\Component\Validator\Mapping\MetadataInterface; @@ -87,7 +88,7 @@ public function hasMetadataFor($value): bool { /** * {@inheritdoc} */ - public function validate($value, $constraints = NULL, $groups = NULL) { + public function validate($value, $constraints = NULL, $groups = NULL): ConstraintViolationListInterface { return $this->startContext($value) ->validate($value, $constraints, $groups) ->getViolations(); @@ -96,7 +97,7 @@ public function validate($value, $constraints = NULL, $groups = NULL) { /** * {@inheritdoc} */ - public function validateProperty($object, $propertyName, $groups = NULL) { + public function validateProperty($object, $propertyName, $groups = NULL): ConstraintViolationListInterface { return $this->startContext($object) ->validateProperty($object, $propertyName, $groups) ->getViolations(); @@ -105,7 +106,7 @@ public function validateProperty($object, $propertyName, $groups = NULL) { /** * {@inheritdoc} */ - public function validatePropertyValue($objectOrClass, $propertyName, $value, $groups = NULL) { + public function validatePropertyValue($objectOrClass, $propertyName, $value, $groups = NULL): ConstraintViolationListInterface { // 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.');