| 1 | <?php |
||
| 10 | class AnnuityPaymentAmountCalculator implements PaymentAmountCalculatorInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @see http://www.financeformulas.net/Annuity_Payment_Formula.html |
||
| 14 | * @see http://www.tvmcalcs.com/index.php/calculators/apps/lease_payments |
||
| 15 | * @see http://www.ms.uky.edu/~rkremer/files/Finance04.pdf |
||
| 16 | * @param array $periods |
||
| 17 | * @param float $presentValue |
||
| 18 | * @param float $interestRate |
||
| 19 | * @param float $futureValue |
||
| 20 | * @return array |
||
| 21 | */ |
||
| 22 | 6 | public function getPaymentAmounts( |
|
| 51 | |||
| 52 | } |
||
| 53 |