1 | <?php |
||
18 | class RawConsoleReporter implements ReporterInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var OutputInterface |
||
22 | */ |
||
23 | protected $output; |
||
24 | |||
25 | /** |
||
26 | * @param OutputInterface $output |
||
27 | */ |
||
28 | public function __construct(OutputInterface $output = null) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function onAfterRun(CheckInterface $check, ResultInterface $result, $checkAlias = null) |
||
62 | |||
63 | /** |
||
64 | * @return string |
||
65 | */ |
||
66 | protected function getNagiosPerformanceData() |
||
70 | |||
71 | /** |
||
72 | * {@inheritdoc} |
||
73 | */ |
||
74 | public function onStart(\ArrayObject $checks, $runnerConfig) |
||
78 | |||
79 | /** |
||
80 | * {@inheritdoc} |
||
81 | */ |
||
82 | public function onBeforeRun(CheckInterface $check, $checkAlias = null) |
||
86 | |||
87 | /** |
||
88 | * {@inheritdoc} |
||
89 | */ |
||
90 | public function onStop(ResultsCollection $results) |
||
94 | |||
95 | /** |
||
96 | * {@inheritdoc} |
||
97 | */ |
||
98 | public function onFinish(ResultsCollection $results) |
||
102 | } |
||
103 |