| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function __construct(OutputInterface $output, array $hosts) |
||
| 35 | { |
||
| 36 | $headers = []; |
||
| 37 | $this->template = []; |
||
| 38 | foreach ($hosts as $host) { |
||
| 39 | $headers[] = $host->getTag(); |
||
| 40 | $this->template[] = $host->getAlias(); |
||
| 41 | } |
||
| 42 | $this->table = new Table($output); |
||
| 43 | $this->table->setHeaders($headers); |
||
| 44 | $this->table->setStyle('box'); |
||
| 45 | } |
||
| 71 |