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