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,7 +32,7 @@ class ConstraintViolation implements ConstraintViolationInterface
/**
* Creates a new constraint violation.
*
* @param string $message The violation message as a string or a stringable object
* @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

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,7 +64,7 @@ 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 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,7 +81,7 @@ interface ExecutionContextInterface
* ->setTranslationDomain('number_validation')
* ->addViolation();
*
* @param string $message The error message as a string or a stringable object
* @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()