| Name | Size | Mode | Actions |
|---|---|---|---|
| DateFormat/ | - | 0755 | rm |
| Exception/ | - | 0755 | rm |
| Resources/ | - | 0755 | rm |
| bootstrap.php | 906 | 0644 | editdlrm |
| bootstrap80.php | 826 | 0644 | editdlrm |
| Collator.php | 7435 | 0644 | editdlrm |
| composer.json | 1169 | 0644 | editdlrm |
| Currencies.php | 1171 | 0644 | editdlrm |
| Icu.php | 3031 | 0644 | editdlrm |
| IntlDateFormatter.php | 17910 | 0644 | editdlrm |
| LICENSE | 1065 | 0644 | editdlrm |
| Locale.php | 8933 | 0644 | editdlrm |
| NumberFormatter.php | 29004 | 0644 | editdlrm |
| README.md | 854 | 0644 | editdlrm |
/home/techb158/immovalet.com/vendor/symfony/polyfill-intl-icu/Currencies.php (1171B)
* * @internal */ class Currencies { private static $data; public static function getSymbol(string $currency): ?string { $data = self::$data ?? self::$data = require __DIR__.'/Resources/currencies.php'; return $data[$currency][0] ?? $data[strtoupper($currency)][0] ?? null; } public static function getFractionDigits(string $currency): int { $data = self::$data ?? self::$data = require __DIR__.'/Resources/currencies.php'; return $data[$currency][1] ?? $data[strtoupper($currency)][1] ?? $data['DEFAULT'][1]; } public static function getRoundingIncrement(string $currency): int { $data = self::$data ?? self::$data = require __DIR__.'/Resources/currencies.php'; return $data[$currency][2] ?? $data[strtoupper($currency)][2] ?? $data['DEFAULT'][2]; } }