File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ public function formatForHumans(?string $locale = null, ?Closure $callback = nul
608
608
$ prefix = $ this ->currency ->getPrefix ();
609
609
$ suffix = $ this ->currency ->getSuffix ();
610
610
611
- $ formatter = new \NumberFormatter (is_null ($ locale ) ? static ::getLocale (): $ locale , \NumberFormatter::PADDING_POSITION );
611
+ $ formatter = new \NumberFormatter (is_null ($ locale ) ? static ::getLocale () : $ locale , \NumberFormatter::PADDING_POSITION );
612
612
613
613
$ formatter ->setSymbol (\NumberFormatter::DECIMAL_SEPARATOR_SYMBOL , $ this ->currency ->getDecimalMark ());
614
614
$ formatter ->setSymbol (\NumberFormatter::GROUPING_SEPARATOR_SYMBOL , $ this ->currency ->getThousandsSeparator ());
@@ -634,7 +634,7 @@ public function formatLocale(?string $locale = null, ?Closure $callback = null):
634
634
}
635
635
// @codeCoverageIgnoreEnd
636
636
637
- $ formatter = new \NumberFormatter (is_null ($ locale ) ? static ::getLocale (): $ locale , \NumberFormatter::CURRENCY );
637
+ $ formatter = new \NumberFormatter (is_null ($ locale ) ? static ::getLocale () : $ locale , \NumberFormatter::CURRENCY );
638
638
639
639
$ formatter ->setSymbol (\NumberFormatter::DECIMAL_SEPARATOR_SYMBOL , $ this ->currency ->getDecimalMark ());
640
640
$ formatter ->setSymbol (\NumberFormatter::GROUPING_SEPARATOR_SYMBOL , $ this ->currency ->getThousandsSeparator ());
You can’t perform that action at this time.
0 commit comments