-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
AbstractMoney.php
230 lines (205 loc) · 7.06 KB
/
AbstractMoney.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php
declare(strict_types=1);
namespace Brick\Money;
use Brick\Money\Exception\MoneyMismatchException;
use Brick\Math\BigNumber;
use Brick\Math\RoundingMode;
use Brick\Math\Exception\MathException;
use Brick\Math\Exception\RoundingNecessaryException;
use JsonSerializable;
use Stringable;
/**
* Base class for Money and RationalMoney.
*
* Please consider this class sealed: extending this class yourself is not supported, and breaking changes (such as
* adding new abstract methods) can happen at any time, even in a minor version.
*/
abstract class AbstractMoney implements MoneyContainer, Stringable, JsonSerializable
{
abstract public function getAmount() : BigNumber;
abstract public function getCurrency() : Currency;
/**
* Converts this money to a Money in the given Context.
*
* @param Context $context The context.
* @param RoundingMode $roundingMode The rounding mode, if necessary.
*
* @return Money
*
* @throws RoundingNecessaryException If RoundingMode::UNNECESSARY is used but rounding is necessary.
*/
final public function to(Context $context, RoundingMode $roundingMode = RoundingMode::UNNECESSARY) : Money
{
return Money::create($this->getAmount(), $this->getCurrency(), $context, $roundingMode);
}
/**
* Required by interface MoneyContainer.
*
* @psalm-return array<string, BigNumber>
*
* @return BigNumber[]
*/
final public function getAmounts() : array
{
return [
$this->getCurrency()->getCurrencyCode() => $this->getAmount()
];
}
/**
* Returns the sign of this money.
*
* @return int -1 if the number is negative, 0 if zero, 1 if positive.
*/
final public function getSign() : int
{
return $this->getAmount()->getSign();
}
/**
* Returns whether this money has zero value.
*
* @return bool
*/
final public function isZero() : bool
{
return $this->getAmount()->isZero();
}
/**
* Returns whether this money has a negative value.
*
* @return bool
*/
final public function isNegative() : bool
{
return $this->getAmount()->isNegative();
}
/**
* Returns whether this money has a negative or zero value.
*
* @return bool
*/
final public function isNegativeOrZero() : bool
{
return $this->getAmount()->isNegativeOrZero();
}
/**
* Returns whether this money has a positive value.
*
* @return bool
*/
final public function isPositive() : bool
{
return $this->getAmount()->isPositive();
}
/**
* Returns whether this money has a positive or zero value.
*
* @return bool
*/
final public function isPositiveOrZero() : bool
{
return $this->getAmount()->isPositiveOrZero();
}
/**
* Compares this money to the given amount.
*
* @return int [-1, 0, 1] if `$this` is less than, equal to, or greater than `$that`.
*
* @throws MathException If the argument is an invalid number.
* @throws MoneyMismatchException If the argument is a money in a different currency.
*/
final public function compareTo(AbstractMoney|BigNumber|int|float|string $that) : int
{
return $this->getAmount()->compareTo($this->getAmountOf($that));
}
/**
* Returns whether this money is equal to the given amount.
*
* @throws MathException If the argument is an invalid number.
* @throws MoneyMismatchException If the argument is a money in a different currency.
*/
final public function isEqualTo(AbstractMoney|BigNumber|int|float|string $that) : bool
{
return $this->getAmount()->isEqualTo($this->getAmountOf($that));
}
/**
* Returns whether this money is less than the given amount.
*
* @throws MathException If the argument is an invalid number.
* @throws MoneyMismatchException If the argument is a money in a different currency.
*/
final public function isLessThan(AbstractMoney|BigNumber|int|float|string $that) : bool
{
return $this->getAmount()->isLessThan($this->getAmountOf($that));
}
/**
* Returns whether this money is less than or equal to the given amount.
*
* @throws MathException If the argument is an invalid number.
* @throws MoneyMismatchException If the argument is a money in a different currency.
*/
final public function isLessThanOrEqualTo(AbstractMoney|BigNumber|int|float|string $that) : bool
{
return $this->getAmount()->isLessThanOrEqualTo($this->getAmountOf($that));
}
/**
* Returns whether this money is greater than the given amount.
*
* @throws MathException If the argument is an invalid number.
* @throws MoneyMismatchException If the argument is a money in a different currency.
*/
final public function isGreaterThan(AbstractMoney|BigNumber|int|float|string $that) : bool
{
return $this->getAmount()->isGreaterThan($this->getAmountOf($that));
}
/**
* Returns whether this money is greater than or equal to the given amount.
*
* @throws MathException If the argument is an invalid number.
* @throws MoneyMismatchException If the argument is a money in a different currency.
*/
final public function isGreaterThanOrEqualTo(AbstractMoney|BigNumber|int|float|string $that) : bool
{
return $this->getAmount()->isGreaterThanOrEqualTo($this->getAmountOf($that));
}
/**
* Returns whether this money's amount and currency are equal to those of the given money.
*
* Unlike isEqualTo(), this method only accepts a money, and returns false if the given money is in another
* currency, instead of throwing a MoneyMismatchException.
*
* @param AbstractMoney $that
*
* @return bool
*/
final public function isAmountAndCurrencyEqualTo(AbstractMoney $that) : bool
{
return $this->getAmount()->isEqualTo($that->getAmount())
&& $this->getCurrency()->is($that->getCurrency());
}
/**
* Returns the amount of the given parameter.
*
* If the parameter is a money, its currency is checked against this money's currency.
*
* @param AbstractMoney|BigNumber|int|float|string $that A money or amount.
*
* @throws MoneyMismatchException If currencies don't match.
*/
final protected function getAmountOf(AbstractMoney|BigNumber|int|float|string $that): BigNumber|int|float|string
{
if ($that instanceof AbstractMoney) {
if (! $that->getCurrency()->is($this->getCurrency())) {
throw MoneyMismatchException::currencyMismatch($this->getCurrency(), $that->getCurrency());
}
return $that->getAmount();
}
return $that;
}
final public function jsonSerialize(): array
{
return [
'amount' => (string) $this->getAmount(),
'currency' => $this->getCurrency()->jsonSerialize()
];
}
}