| 1 | <?php |
||
| 8 | class LiveReporter extends CliReporter |
||
| 9 | { |
||
| 10 | public function init(OutputInterface $_output) |
||
| 14 | |||
| 15 | public function processResult(Result $result) |
||
| 16 | { |
||
| 17 | if ($result->isSuccess()) { |
||
| 18 | $this->renderSuccess($result); |
||
| 19 | } else { |
||
| 20 | $this->renderFailure($result); |
||
| 21 | } |
||
| 22 | } |
||
| 23 | |||
| 24 | public function finish() |
||
| 27 | } |
||
| 28 |