| 1 | <?php |
||
| 8 | abstract class PaymentAmountCalculator implements PaymentAmountCalculatorInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var InterestAmountCalculatorInterface |
||
| 12 | */ |
||
| 13 | protected $interestAmountCalculator; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * EqualPrincipalPaymentAmountCalculator constructor. |
||
| 17 | * @param InterestAmountCalculatorInterface $interestAmountCalculator |
||
| 18 | */ |
||
| 19 | public function __construct(InterestAmountCalculatorInterface $interestAmountCalculator) |
||
| 23 | |||
| 24 | } |
||
| 25 |