Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 2 | public function __construct( |
|
23 | LoggerInterface $logger, |
||
24 | HeaderPartFactory $partFactory, |
||
25 | CommentConsumerService $commentConsumerService, |
||
26 | QuotedStringConsumerService $quotedStringConsumerService |
||
27 | ) { |
||
28 | 2 | parent::__construct( |
|
29 | 2 | $logger, |
|
30 | 2 | $partFactory, |
|
31 | 2 | [$commentConsumerService, $quotedStringConsumerService] |
|
32 | 2 | ); |
|
35 |