| 1 | <?php |
||
| 10 | class ContainerList |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var OutputInterface |
||
| 14 | */ |
||
| 15 | private $output; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param OutputInterface $output |
||
| 19 | */ |
||
| 20 | public function __construct(OutputInterface $output) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param Container[] $containers |
||
| 27 | */ |
||
| 28 | public function render(array $containers) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param Container $container |
||
| 52 | * |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | private function getDecoratedState(Container $container) |
||
| 63 | } |
||
| 64 |