[Validator] clarify stringable type annotations

This commit is contained in:
Nicolas Grekas 2020-03-13 11:25:23 +01:00
parent f6f19e6c00
commit 0ee97f23a6
3 changed files with 21 additions and 21 deletions

View File

@ -32,7 +32,7 @@ class ConstraintViolation implements ConstraintViolationInterface
/** /**
* Creates a new constraint violation. * Creates a new constraint violation.
* *
* @param string $message The violation message * @param string|\Stringable $message The violation message as a string or a stringable object
* @param string $messageTemplate The raw violation message * @param string $messageTemplate The raw violation message
* @param array $parameters The parameters to substitute in the * @param array $parameters The parameters to substitute in the
* raw violation message * raw violation message

View File

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

View File

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