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
+4 -4
View File
@@ -38,7 +38,7 @@ interface ConstraintViolationInterface
/**
* Returns the violation message.
*
* @return string The violation message.
* @return string The violation message
*/
public function getMessage();
@@ -49,7 +49,7 @@ interface ConstraintViolationInterface
* returned by {@link getMessageParameters}. Typically you'll pass the
* message template and parameters to a translation engine.
*
* @return string The raw violation message.
* @return string The raw violation message
*/
public function getMessageTemplate();
@@ -78,7 +78,7 @@ interface ConstraintViolationInterface
* This method returns the value of the parameter for choosing the right
* pluralization form (in this case "choices").
*
* @return int|null The number to use to pluralize of the message.
* @return int|null The number to use to pluralize of the message
*
* @deprecated since version 2.7, to be replaced by getPlural() in 3.0.
*/
@@ -119,7 +119,7 @@ interface ConstraintViolationInterface
/**
* Returns a machine-digestible error code for the violation.
*
* @return string|null The error code.
* @return string|null The error code
*/
public function getCode();
}