| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 28 | public function render(ResultCollection $resultCollection) |
||
| 29 | { |
||
| 30 | foreach ($resultCollection as $result) { |
||
| 31 | $this->io->write("- "); |
||
| 32 | $this->io->write(sprintf('<fg=white>%s</fg=white>', $result->getName())); |
||
| 33 | $this->io->write(" = "); |
||
| 34 | $this->io->write(sprintf('<fg=green>%s</fg=green>', $result->getStatusCode())); |
||
| 35 | $this->io->write(" = "); |
||
| 36 | $this->io->write($result->getReponseTime()); |
||
| 37 | $this->io->write("\n"); |
||
| 38 | } |
||
| 39 | } |
||
| 40 | } |
||
| 41 |