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:
parent
db56c09587
commit
f1e72395cb
588 changed files with 26857 additions and 2777 deletions
20
vendor/symfony/validator/ExecutionContext.php
vendored
20
vendor/symfony/validator/ExecutionContext.php
vendored
|
@ -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)
|
||||
{
|
||||
|
|
Reference in a new issue