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

@ -56,11 +56,11 @@ interface ValidationVisitorInterface
* does not find metadata for the given value, it will fail with an
* exception.
*
* @param mixed $value The value to validate.
* @param string $group The validation group to validate.
* @param string $propertyPath The current property path in the validation graph.
* @param bool $traverse Whether to traverse the value if it is traversable.
* @param bool $deep Whether to traverse nested traversable values recursively.
* @param mixed $value The value to validate
* @param string $group The validation group to validate
* @param string $propertyPath The current property path in the validation graph
* @param bool $traverse Whether to traverse the value if it is traversable
* @param bool $deep Whether to traverse nested traversable values recursively
*
* @throws Exception\NoSuchMetadataException If no metadata can be found for
* the given value.
@ -73,10 +73,10 @@ interface ValidationVisitorInterface
* This method implements the Visitor design pattern. See also
* {@link ValidationVisitorInterface}.
*
* @param MetadataInterface $metadata The metadata holding the constraints.
* @param mixed $value The value to validate.
* @param string $group The validation group to validate.
* @param string $propertyPath The current property path in the validation graph.
* @param MetadataInterface $metadata The metadata holding the constraints
* @param mixed $value The value to validate
* @param string $group The validation group to validate
* @param string $propertyPath The current property path in the validation graph
*/
public function visit(MetadataInterface $metadata, $value, $group, $propertyPath);
}