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