| 1 | <?php |
||
| 9 | abstract class CliReporter implements Reporter |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var OutputInterface |
||
| 13 | */ |
||
| 14 | protected $output; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var Retriever |
||
| 18 | */ |
||
| 19 | protected $retriever; |
||
| 20 | |||
| 21 | public function setResponseRetriever(Retriever $retriever) |
||
| 25 | |||
| 26 | protected function setOutputInterface(OutputInterface $output) |
||
| 30 | |||
| 31 | protected function renderFailure(CheckResult $result) |
||
| 37 | |||
| 38 | protected function renderSuccess(CheckResult $result) |
||
| 42 | |||
| 43 | protected function renderSkipped(CheckResult $result) |
||
| 48 | } |
||
| 49 |