| Total Complexity | 6 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 29.4% |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | class Nagius extends ReporterAbstract |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var OutputInterface |
||
| 29 | */ |
||
| 30 | protected $output; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param OutputInterface $output |
||
| 34 | */ |
||
| 35 | 3 | public function __construct(OutputInterface $output = null) |
|
| 36 | { |
||
| 37 | 3 | if (null === $output) { |
|
| 38 | 3 | $output = new ConsoleOutput(); |
|
| 39 | } |
||
| 40 | 3 | $this->output = $output; |
|
| 41 | 3 | } |
|
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function onAfterRun(CheckInterface $check, ResultInterface $result, $checkAlias = null) |
||
| 66 | } |
||
| 67 | } |
||
| 68 |