Sha256: 37b89635da086fa6464bc8d477bba0eb23720940f79c991156f0f991bae56637
Contents?: true
Size: 794 Bytes
Versions: 18
Compression:
Stored size: 794 Bytes
Contents
<?php use Symfony\Component\Console\Helper\TableCell; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure formatting tables when using multiple headers with TableCell return function (InputInterface $input, OutputInterface $output) { $headers = [ [new TableCell('Main table title', ['colspan' => 3])], ['ISBN', 'Title', 'Author'], ]; $rows = [ [ '978-0521567817', 'De Monarchia', new TableCell("Dante Alighieri\nspans multiple rows", ['rowspan' => 2]), ], ['978-0804169127', 'Divine Comedy'], ]; $output = new SymfonyStyle($input, $output); $output->table($headers, $rows); };
Version data entries
18 entries across 18 versions & 1 rubygems