1 | <?php |
||
13 | class SimpleInterestCalculatorFactory extends CalculatorFactoryAbstract |
||
14 | { |
||
15 | const MANUFACTURED_CLASS_NAME = 'FinanCalc\\Calculators\\SimpleInterestCalculator'; |
||
16 | |||
17 | /** |
||
18 | * @param $principal |
||
19 | * @param $annualInterestRate |
||
20 | * @param TimeSpan $time |
||
21 | * @return SimpleInterestCalculator |
||
22 | */ |
||
23 | public function newSimpleInterest($principal, $annualInterestRate, TimeSpan $time) |
||
33 | } |
||
34 | } |
||
35 |