| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | interface PaymentAmountCalculatorInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param float $presentValue |
||
| 12 | * @param float $ratePerPeriod |
||
| 13 | * @param float $numberOfPeriods |
||
| 14 | * @return float |
||
| 15 | */ |
||
| 16 | public function getPaymentAmount(float $presentValue, float $ratePerPeriod, float $numberOfPeriods): float; |
||
| 17 | } |