You are here

public function LegacyConstraintViolationBuilder::setPlural in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Violation/LegacyConstraintViolationBuilder.php \Symfony\Component\Validator\Violation\LegacyConstraintViolationBuilder::setPlural()

Sets the number which determines how the plural form of the violation message is chosen when it is translated.

Parameters

int $number The number for determining the plural form:

Return value

ConstraintViolationBuilderInterface This builder

Overrides ConstraintViolationBuilderInterface::setPlural

See also

\Symfony\Component\Translation\TranslatorInterface::transChoice()

File

vendor/symfony/validator/Violation/LegacyConstraintViolationBuilder.php, line 126

Class

LegacyConstraintViolationBuilder
Backwards-compatible implementation of {@link ConstraintViolationBuilderInterface}.

Namespace

Symfony\Component\Validator\Violation

Code

public function setPlural($number) {
  $this->plural = $number;
  return $this;
}