Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function __construct( |
||
23 | Configuration $configuration, |
||
24 | Client $client, |
||
25 | $includeStatistics, |
||
26 | $firstSettlementDate, |
||
27 | $lastSettlementDate |
||
28 | ) { |
||
29 | parent::__construct($configuration, $client); |
||
30 | $this->includeStatistics = $includeStatistics; |
||
31 | $this->firstSettlementDate = $firstSettlementDate; |
||
32 | $this->lastSettlementDate = $lastSettlementDate; |
||
33 | } |
||
44 |