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
+9 -9
View File
@@ -56,11 +56,11 @@ interface ValidationVisitorInterface
* does not find metadata for the given value, it will fail with an
* exception.
*
* @param mixed $value The value to validate.
* @param string $group The validation group to validate.
* @param string $propertyPath The current property path in the validation graph.
* @param bool $traverse Whether to traverse the value if it is traversable.
* @param bool $deep Whether to traverse nested traversable values recursively.
* @param mixed $value The value to validate
* @param string $group The validation group to validate
* @param string $propertyPath The current property path in the validation graph
* @param bool $traverse Whether to traverse the value if it is traversable
* @param bool $deep Whether to traverse nested traversable values recursively
*
* @throws Exception\NoSuchMetadataException If no metadata can be found for
* the given value.
@@ -73,10 +73,10 @@ interface ValidationVisitorInterface
* This method implements the Visitor design pattern. See also
* {@link ValidationVisitorInterface}.
*
* @param MetadataInterface $metadata The metadata holding the constraints.
* @param mixed $value The value to validate.
* @param string $group The validation group to validate.
* @param string $propertyPath The current property path in the validation graph.
* @param MetadataInterface $metadata The metadata holding the constraints
* @param mixed $value The value to validate
* @param string $group The validation group to validate
* @param string $propertyPath The current property path in the validation graph
*/
public function visit(MetadataInterface $metadata, $value, $group, $propertyPath);
}