deploy #1
@@ -43,7 +43,9 @@ $formatNumber = static function (int $value) use ($numberLocale): string {
|
|||||||
return $formatted;
|
return $formatted;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return number_format($value, 0, $locale === 'de' ? ',' : '.', $locale === 'de' ? '.' : ',');
|
$decimal = $numberLocale === 'de_DE' ? ',' : '.';
|
||||||
|
$thousands = $numberLocale === 'de_DE' ? '.' : ',';
|
||||||
|
return number_format($value, 0, $decimal, $thousands);
|
||||||
};
|
};
|
||||||
|
|
||||||
/** @var array<string, array{label: string, modules: list<array{label: string, description: string}>}> $groups */
|
/** @var array<string, array{label: string, modules: list<array{label: string, description: string}>}> $groups */
|
||||||
|
|||||||
Reference in New Issue
Block a user