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

@ -35,14 +35,14 @@ interface GlobalExecutionContextInterface
/**
* Returns the violations generated by the validator so far.
*
* @return ConstraintViolationListInterface A list of constraint violations.
* @return ConstraintViolationListInterface A list of constraint violations
*/
public function getViolations();
/**
* Returns the value at which validation was started in the object graph.
*
* @return mixed The root value.
* @return mixed The root value
*
* @see ExecutionContextInterface::getRoot()
*/
@ -51,21 +51,21 @@ interface GlobalExecutionContextInterface
/**
* Returns the visitor instance used to validate the object graph nodes.
*
* @return ValidationVisitorInterface The validation visitor.
* @return ValidationVisitorInterface The validation visitor
*/
public function getVisitor();
/**
* Returns the factory for constraint validators.
*
* @return ConstraintValidatorFactoryInterface The constraint validator factory.
* @return ConstraintValidatorFactoryInterface The constraint validator factory
*/
public function getValidatorFactory();
/**
* Returns the factory for validation metadata objects.
*
* @return MetadataFactoryInterface The metadata factory.
* @return MetadataFactoryInterface The metadata factory
*/
public function getMetadataFactory();
}