1 | <?php |
||
9 | class EqualPrincipalPaymentAmountCalculator implements PaymentAmountCalculatorInterface |
||
10 | { |
||
11 | /** |
||
12 | * @param float $presentValue |
||
13 | * @param float $ratePerPeriod |
||
14 | * @param float $numberOfPeriods |
||
15 | * @return float |
||
16 | */ |
||
17 | 5 | public function getPaymentAmount(float $presentValue, float $ratePerPeriod, float $numberOfPeriods): float |
|
29 | } |
||
30 |