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
+10 -10
View File
@@ -66,13 +66,13 @@ class ExecutionContext implements ExecutionContextInterface
/**
* Creates a new execution context.
*
* @param GlobalExecutionContextInterface $globalContext The global context storing node-independent state.
* @param TranslatorInterface $translator The translator for translating violation messages.
* @param null|string $translationDomain The domain of the validation messages.
* @param MetadataInterface $metadata The metadata of the validated node.
* @param mixed $value The value of the validated node.
* @param string $group The current validation group.
* @param string $propertyPath The property path to the current node.
* @param GlobalExecutionContextInterface $globalContext The global context storing node-independent state
* @param TranslatorInterface $translator The translator for translating violation messages
* @param null|string $translationDomain The domain of the validation messages
* @param MetadataInterface $metadata The metadata of the validated node
* @param mixed $value The value of the validated node
* @param string $group The current validation group
* @param string $propertyPath The property path to the current node
*/
public function __construct(GlobalExecutionContextInterface $globalContext, TranslatorInterface $translator, $translationDomain = null, MetadataInterface $metadata = null, $value = null, $group = null, $propertyPath = '')
{
@@ -266,8 +266,8 @@ class ExecutionContext implements ExecutionContextInterface
/**
* Executes the validators of the given constraints for the given value.
*
* @param mixed $value The value to validate.
* @param Constraint[] $constraints The constraints to match against.
* @param mixed $value The value to validate
* @param Constraint[] $constraints The constraints to match against
*/
private function executeConstraintValidators($value, array $constraints)
{
@@ -286,7 +286,7 @@ class ExecutionContext implements ExecutionContextInterface
* is passed, an array containing the current
* group of the context is returned.
*
* @return array An array of validation groups.
* @return array An array of validation groups
*/
private function resolveGroups($groups)
{