<?php
namespace PaymentPlugins\WooCommerce\PPCP\Utilities;
class Currency {
public static function get_currency_decimals() {
return [
'BIF' => 0,
'CLP' => 0,
'DJF' => 0,
'GNF' => 0,
'JPY' => 0,
'KMF' => 0,
'KRW' => 0,
'MGA' => 0,
'PYG' => 0,
'RWF' => 0,
'UGX' => 0,
'VND' => 0,
'VUV' => 0,
'XAF' => 0,
'XOF' => 0,
'XPF' => 0,
];
}
}