updated core and modules

This commit is contained in:
Bachir Soussi Chiadmi
2017-09-09 16:27:51 +02:00
parent 027aa99b32
commit 41863f872c
7810 changed files with 318922 additions and 83631 deletions
@@ -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();
}