profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

horizontalTable()

Syntax

use Symfony\Component\Console\Style\SymfonyStyle;

protected function execute(InputInterface $input, OutputInterface $output)
{
    $io = new SymfonyStyle($input, $output);
    $io->horizontalTable(
        ['ISBN', 'Title', 'Author'],
        [
            // ... the rows ...
        ]
    );
}