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

Version Path
dependabot-composer-0.119.0.beta1 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.113.19 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.112.1 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.111.57 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.111.56 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.111.52 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.111.50 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.111.25 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.111.17 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.111.15 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.110.13 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.108.11 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.108.8 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.107.47 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.107.39 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.107.36 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.107.28 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
dependabot-composer-0.107.14 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php