1 | <?php |
||
11 | class StreamedReporter implements ReporterInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var ArrayReporter |
||
15 | */ |
||
16 | private $arrayReporter; |
||
17 | |||
18 | public function __construct() |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function onStart(ArrayObject $checks, $runnerConfig) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function onBeforeRun(CheckInterface $check, $checkAlias = null) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function onAfterRun(CheckInterface $check, ResultInterface $result, $checkAlias = null) |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function onStop(ResultsCollection $results) |
||
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function onFinish(ResultsCollection $results) |
||
64 | } |
||
65 |