Passed
Branch master (84c5d9)
by Kauri
02:53
created

PaymentScheduleFactoryInterface

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 0
cts 0
cp 0
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
generate() 0 1 ?
1
<?php
2
3
declare(strict_types = 1);
4
5
namespace Kauri\Loan;
6
7
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
}