Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | public function __construct( |
||
22 | Subscription $subscription, |
||
23 | eCurringClientInterface $client, |
||
24 | int $currentPage, |
||
25 | int $totalPages, |
||
26 | array $objects, |
||
27 | ?int $itemsPerPage = 10, |
||
28 | ?bool $autoload = true |
||
29 | ) { |
||
30 | parent::__construct($client, $currentPage, $totalPages, $objects, $itemsPerPage, $autoload); |
||
31 | |||
32 | $this->subscription = $subscription; |
||
33 | } |
||
40 |