Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
29 | 2 | public function __construct(Parser $parser, Profile $profile, Writer $writer) { |
|
30 | 2 | $this->config = $profile; |
|
31 | 2 | $this->writer = $writer; |
|
32 | 2 | $this->parser = $parser; |
|
33 | 2 | $this->context = $parser->getContext(); |
|
34 | 2 | $this->matcher = $parser->getMatcher(); |
|
35 | |||
36 | 2 | $this->init(); |
|
37 | 2 | } |
|
38 | |||
55 |