| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 19 | public function __construct( |
||
| 20 | ResultPrinterInterface $jsonPrinter, |
||
| 21 | ResultPrinterInterface $xmlPrinter, |
||
| 22 | ResultPrinterInterface $consolePrinter |
||
| 23 | ) { |
||
| 24 | $this->jsonPrinter = $jsonPrinter; |
||
| 25 | $this->xmlPrinter = $xmlPrinter; |
||
| 26 | $this->consolePrinter = $consolePrinter; |
||
| 27 | } |
||
| 44 |