You are here

public function ConstraintViolationBuilder::setPlural in Plug 7

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

lib/Symfony/validator/Symfony/Component/Validator/Violation/ConstraintViolationBuilder.php, line 157

Class

ConstraintViolationBuilder
Default implementation of {@link ConstraintViolationBuilderInterface}.

Namespace

Symfony\Component\Validator\Violation

Code

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