1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace hiqdev\php\billing\Money; |
6
|
|
|
|
7
|
|
|
use Laminas\Code\Reflection\Exception\InvalidArgumentException; |
|
|
|
|
8
|
|
|
use Money\Currencies\ISOCurrencies; |
9
|
|
|
use Money\Currency; |
10
|
|
|
use Money\Money; |
11
|
|
|
use Money\MoneyParser; |
12
|
|
|
use Money\Parser\DecimalMoneyParser; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* Class MultipliedMoney a wrapper around the Money class and provides |
16
|
|
|
* a way to work with sub-cent prices. |
17
|
|
|
* |
18
|
|
|
* For example, if you have a price of $0.001, it will be represented as |
19
|
|
|
* 1 USD with a multiplier of 1000. After you do some calculations with this |
20
|
|
|
* price, you can convert it back to the decimal representation by dividing |
21
|
|
|
* the amount by the multiplier. |
22
|
|
|
* |
23
|
|
|
* By default, the MultipliedMoney uses the DecimalMoneyParser to parse the |
24
|
|
|
* amount. You can set your own parser by calling the setDecimalMoneyParser. |
25
|
|
|
* |
26
|
|
|
* @author Dmytro Naumenko <[email protected]> |
27
|
|
|
*/ |
28
|
|
|
final class MultipliedMoney |
29
|
|
|
{ |
30
|
|
|
private function __construct( |
31
|
|
|
private readonly Money $money, |
32
|
|
|
private readonly int $multiplier = 1 |
33
|
|
|
) { |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* @param numeric-string $amount |
|
|
|
|
38
|
|
|
* @param string $currencyCode |
39
|
|
|
*/ |
40
|
|
|
public static function create(string $amount, string $currencyCode): MultipliedMoney |
41
|
|
|
{ |
42
|
|
|
if (!is_numeric($amount)) { |
43
|
|
|
throw new InvalidArgumentException('Amount of the MultipliedMoney must be numeric'); |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
$currency = new Currency($currencyCode); |
47
|
|
|
$parser = self::getMoneyParser(); |
48
|
|
|
|
49
|
|
|
if (!self::isFloat($amount) || self::isWhole($amount)) { |
50
|
|
|
return new self($parser->parse($amount, $currency), 1); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
$multiplier = self::calculateMultiplierToInteger($amount); |
54
|
|
|
return new self( |
55
|
|
|
$parser->parse((string)($amount * $multiplier), $currency), |
56
|
|
|
$multiplier |
57
|
|
|
); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
public function money(): Money |
61
|
|
|
{ |
62
|
|
|
return $this->money; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
public function multiplier(): int |
66
|
|
|
{ |
67
|
|
|
return $this->multiplier; |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
public function getCurrency(): Currency |
71
|
|
|
{ |
72
|
|
|
return $this->money->getCurrency(); |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
public function getAmount(): string |
76
|
|
|
{ |
77
|
|
|
return $this->money->getAmount(); |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* @param numeric-string $amount |
|
|
|
|
82
|
|
|
*/ |
83
|
|
|
private static function calculateMultiplierToInteger(string $amount): int |
84
|
|
|
{ |
85
|
|
|
if (self::isWhole($amount)) { |
86
|
|
|
return 1; |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
[$integer, $fraction] = explode('.', $amount, 2); |
90
|
|
|
return (int)('1' . implode(array_fill(0, strlen($fraction), 0))); |
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
/** |
94
|
|
|
* @param numeric-string $number |
|
|
|
|
95
|
|
|
*/ |
96
|
|
|
private static function isWhole(string $number): bool |
97
|
|
|
{ |
98
|
|
|
/** @noinspection PhpWrongStringConcatenationInspection */ |
99
|
|
|
return is_int($number + 0); |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
/** |
103
|
|
|
* @param numeric-string $number |
|
|
|
|
104
|
|
|
*/ |
105
|
|
|
private static function isFloat(string $number): bool |
106
|
|
|
{ |
107
|
|
|
return str_contains($number, '.'); |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
private static MoneyParser $moneyParser; |
111
|
|
|
public static function setDecimalMoneyParser(MoneyParser $moneyParser): void |
112
|
|
|
{ |
113
|
|
|
self::$moneyParser = $moneyParser; |
114
|
|
|
} |
115
|
|
|
private static function getMoneyParser(): MoneyParser |
116
|
|
|
{ |
117
|
|
|
if (!isset(self::$moneyParser)) { |
118
|
|
|
self::setDecimalMoneyParser(new DecimalMoneyParser(new ISOCurrencies())); |
119
|
|
|
} |
120
|
|
|
|
121
|
|
|
return self::$moneyParser; |
122
|
|
|
} |
123
|
|
|
|
124
|
|
|
} |
125
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths