Total Lines | 9 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
8 | interface PaymentScheduleFactoryInterface |
||
9 | { |
||
10 | /** |
||
11 | * PaymentDateCalculatorInterface constructor. |
||
12 | * @param PaymentScheduleConfigInterface $config |
||
13 | * @return PaymentScheduleInterface |
||
14 | */ |
||
15 | public static function generate(PaymentScheduleConfigInterface $config): PaymentScheduleInterface; |
||
16 | } |