Neos\Flow\I18n\EelHelper\TranslationParameterToken::quantity PHP Method

quantity() public method

Set the quantity.
public quantity ( mixed $quantity ) : TranslationParameterToken
$quantity mixed A number to find plural form for (float or int), NULL to not use plural forms
return TranslationParameterToken
    public function quantity($quantity)
    {
        $this->parameters['quantity'] = $quantity;
        return $this;
    }