Update to Drupal 8.2.6. For more information, see https://www.drupal.org/project/drupal/releases/8.2.6

This commit is contained in:
Pantheon Automation 2017-02-02 16:28:38 -08:00 committed by Greg Anderson
parent db56c09587
commit f1e72395cb
588 changed files with 26857 additions and 2777 deletions

View file

@ -145,8 +145,8 @@ interface ExecutionContextInterface
* Any violations generated during the validation will be added to the
* violation list that you can access with {@link getViolations}.
*
* @param mixed $value The value to validate.
* @param string $subPath The path to append to the context's property path.
* @param mixed $value The value to validate
* @param string $subPath The path to append to the context's property path
* @param null|string|string[] $groups The groups to validate in. If you don't pass any
* groups here, the current group of the context
* will be used.
@ -181,9 +181,9 @@ interface ExecutionContextInterface
* $context->validate($address->street, new NotNull(), 'street');
* </pre>
*
* @param mixed $value The value to validate.
* @param Constraint|Constraint[] $constraints The constraint(s) to validate against.
* @param string $subPath The path to append to the context's property path.
* @param mixed $value The value to validate
* @param Constraint|Constraint[] $constraints The constraint(s) to validate against
* @param string $subPath The path to append to the context's property path
* @param null|string|string[] $groups The groups to validate in. If you don't pass any
* groups here, the current group of the context
* will be used.
@ -197,7 +197,7 @@ interface ExecutionContextInterface
/**
* Returns the violations generated by the validator so far.
*
* @return ConstraintViolationListInterface The constraint violation list.
* @return ConstraintViolationListInterface The constraint violation list
*/
public function getViolations();
@ -210,7 +210,7 @@ interface ExecutionContextInterface
*
* The current value is returned by {@link getValue}.
*
* @return mixed The root value of the validation.
* @return mixed The root value of the validation
*/
public function getRoot();
@ -220,7 +220,7 @@ interface ExecutionContextInterface
* If you want to retrieve the object that was originally passed to the
* validator, use {@link getRoot}.
*
* @return mixed The currently validated value.
* @return mixed The currently validated value
*/
public function getValue();
@ -245,7 +245,7 @@ interface ExecutionContextInterface
/**
* Returns the used metadata factory.
*
* @return MetadataFactoryInterface The metadata factory.
* @return MetadataFactoryInterface The metadata factory
*
* @deprecated since version 2.5, to be removed in 3.0.
* Use {@link Context\ExecutionContextInterface::getValidator()}
@ -258,7 +258,7 @@ interface ExecutionContextInterface
/**
* Returns the validation group that is currently being validated.
*
* @return string The current validation group.
* @return string The current validation group
*/
public function getGroup();
@ -269,7 +269,7 @@ interface ExecutionContextInterface
* {@link ClassBasedInterface} or if no metadata is available for the
* current node, this method returns null.
*
* @return string|null The class name or null, if no class name could be found.
* @return string|null The class name or null, if no class name could be found
*/
public function getClassName();
@ -280,7 +280,7 @@ interface ExecutionContextInterface
* {@link PropertyMetadataInterface} or if no metadata is available for the
* current node, this method returns null.
*
* @return string|null The property name or null, if no property name could be found.
* @return string|null The property name or null, if no property name could be found
*/
public function getPropertyName();