Merge branch '4.4'

* 4.4:
  fix merge
  fix merge
This commit is contained in:
Nicolas Grekas 2019-08-26 11:33:24 +02:00
commit 8a5d937de2
4 changed files with 15 additions and 15 deletions

View File

@ -32,20 +32,20 @@ class ConstraintViolation implements ConstraintViolationInterface
/**
* Creates a new constraint violation.
*
* @param string $message The violation message as a string or a stringable object
* @param string $messageTemplate The raw violation message
* @param array $parameters The parameters to substitute in the
* @param string|object $message The violation message as a string or a stringable object
* @param string $messageTemplate The raw violation message
* @param array $parameters The parameters to substitute in the
* raw violation message
* @param mixed $root The value originally passed to the
* @param mixed $root The value originally passed to the
* validator
* @param string $propertyPath The property path from the root
* @param string $propertyPath The property path from the root
* value to the invalid value
* @param mixed $invalidValue The invalid value that caused this
* @param mixed $invalidValue The invalid value that caused this
* violation
* @param int|null $plural The number for determining the plural
* @param int|null $plural The number for determining the plural
* form when translating the message
* @param string|null $code The error code of the violation
* @param mixed $cause The cause of the violation
* @param string|null $code The error code of the violation
* @param mixed $cause The cause of the violation
*/
public function __construct($message, ?string $messageTemplate, array $parameters, $root, ?string $propertyPath, $invalidValue, int $plural = null, string $code = null, Constraint $constraint = null, $cause = null)
{

View File

@ -36,7 +36,7 @@ interface ConstraintViolationInterface
/**
* Returns the violation message.
*
* @return string The violation message as a string or a stringable object
* @return string|object The violation message as a string or a stringable object
*/
public function getMessage();

View File

@ -64,8 +64,8 @@ interface ExecutionContextInterface
/**
* Adds a violation at the current node of the validation graph.
*
* @param string $message The error message as a string or a stringable object
* @param array $params The parameters substituted in the error message
* @param string|object $message The error message as a string or a stringable object
* @param array $params The parameters substituted in the error message
*/
public function addViolation(string $message, array $params = []);
@ -81,8 +81,8 @@ interface ExecutionContextInterface
* ->setTranslationDomain('number_validation')
* ->addViolation();
*
* @param string $message The error message as a string or a stringable object
* @param array $parameters The parameters substituted in the error message
* @param string|object $message The error message as a string or a stringable object
* @param array $parameters The parameters substituted in the error message
*
* @return ConstraintViolationBuilderInterface The violation builder
*/

View File

@ -128,7 +128,7 @@ Root.property.path:
toString
EOF;
$this->assertSame($expected, (string) $violation);
$this->assertSame((string) $message, $violation->getMessage());
$this->assertSame($message, $violation->getMessage());
}
public function testMessageCannotBeArray()