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
+12 -12
View File
@@ -145,8 +145,8 @@ interface ExecutionContextInterface
* Any violations generated during the validation will be added to the
* violation list that you can access with {@link getViolations}.
*
* @param mixed $value The value to validate.
* @param string $subPath The path to append to the context's property path.
* @param mixed $value The value to validate
* @param string $subPath The path to append to the context's property path
* @param null|string|string[] $groups The groups to validate in. If you don't pass any
* groups here, the current group of the context
* will be used.
@@ -181,9 +181,9 @@ interface ExecutionContextInterface
* $context->validate($address->street, new NotNull(), 'street');
* </pre>
*
* @param mixed $value The value to validate.
* @param Constraint|Constraint[] $constraints The constraint(s) to validate against.
* @param string $subPath The path to append to the context's property path.
* @param mixed $value The value to validate
* @param Constraint|Constraint[] $constraints The constraint(s) to validate against
* @param string $subPath The path to append to the context's property path
* @param null|string|string[] $groups The groups to validate in. If you don't pass any
* groups here, the current group of the context
* will be used.
@@ -197,7 +197,7 @@ interface ExecutionContextInterface
/**
* Returns the violations generated by the validator so far.
*
* @return ConstraintViolationListInterface The constraint violation list.
* @return ConstraintViolationListInterface The constraint violation list
*/
public function getViolations();
@@ -210,7 +210,7 @@ interface ExecutionContextInterface
*
* The current value is returned by {@link getValue}.
*
* @return mixed The root value of the validation.
* @return mixed The root value of the validation
*/
public function getRoot();
@@ -220,7 +220,7 @@ interface ExecutionContextInterface
* If you want to retrieve the object that was originally passed to the
* validator, use {@link getRoot}.
*
* @return mixed The currently validated value.
* @return mixed The currently validated value
*/
public function getValue();
@@ -245,7 +245,7 @@ interface ExecutionContextInterface
/**
* Returns the used metadata factory.
*
* @return MetadataFactoryInterface The metadata factory.
* @return MetadataFactoryInterface The metadata factory
*
* @deprecated since version 2.5, to be removed in 3.0.
* Use {@link Context\ExecutionContextInterface::getValidator()}
@@ -258,7 +258,7 @@ interface ExecutionContextInterface
/**
* Returns the validation group that is currently being validated.
*
* @return string The current validation group.
* @return string The current validation group
*/
public function getGroup();
@@ -269,7 +269,7 @@ interface ExecutionContextInterface
* {@link ClassBasedInterface} or if no metadata is available for the
* current node, this method returns null.
*
* @return string|null The class name or null, if no class name could be found.
* @return string|null The class name or null, if no class name could be found
*/
public function getClassName();
@@ -280,7 +280,7 @@ interface ExecutionContextInterface
* {@link PropertyMetadataInterface} or if no metadata is available for the
* current node, this method returns null.
*
* @return string|null The property name or null, if no property name could be found.
* @return string|null The property name or null, if no property name could be found
*/
public function getPropertyName();