Sha256: 827794f646873acc4e6c1d2104097d304af7c4b3fa86c167b03c9fdc21de0f82

Contents?: true

Size: 1.15 KB

Versions: 18

Compression:

Stored size: 1.15 KB

Contents

<?php

use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;

//Ensure has single blank line after any text and a title
return function (InputInterface $input, OutputInterface $output) {
    $output = new SymfonyStyle($input, $output);

    $output->write('Lorem ipsum dolor sit amet');
    $output->title('First title');

    $output->writeln('Lorem ipsum dolor sit amet');
    $output->title('Second title');

    $output->write('Lorem ipsum dolor sit amet');
    $output->write('');
    $output->title('Third title');

    //Ensure edge case by appending empty strings to history:
    $output->write('Lorem ipsum dolor sit amet');
    $output->write(['', '', '']);
    $output->title('Fourth title');

    //Ensure have manual control over number of blank lines:
    $output->writeln('Lorem ipsum dolor sit amet');
    $output->writeln(['', '']); //Should append an extra blank line
    $output->title('Fifth title');

    $output->writeln('Lorem ipsum dolor sit amet');
    $output->newLine(2); //Should append an extra blank line
    $output->title('Fifth title');
};

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_4.php
dependabot-composer-0.113.19 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.112.1 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.111.57 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.111.56 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.111.52 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.111.50 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.111.25 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.111.17 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.111.15 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.110.13 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.108.11 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.108.8 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.107.47 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.107.39 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.107.36 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.107.28 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
dependabot-composer-0.107.14 helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php