Home
last modified time | relevance | path

Searched refs:decimalPoint (Results 1 – 1 of 1) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/Extension/
DCoreExtension.php168 * @param string $decimalPoint the character(s) to use for the decimal point
171 public function setNumberFormat($decimal, $decimalPoint, $thousandSep) argument
173 $this->numberFormat = [$decimal, $decimalPoint, $thousandSep];
606 * @param string $decimalPoint the character(s) to use for the decimal point
611 function twig_number_format_filter(Environment $env, $number, $decimal = null, $decimalPoint = null… argument
618 if (null === $decimalPoint) {
619 $decimalPoint = $defaults[1];
626 return number_format((float) $number, $decimal, $decimalPoint, $thousandSep);