Файл: gapps/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php
Строк: 38
<?php
use SymfonyComponentConsoleInputInputInterface;
use SymfonyComponentConsoleOutputOutputInterface;
use SymfonyComponentConsoleTestsStyleSymfonyStyleWithForcedLineLength;
//Ensure has single blank line between two titles
return function (InputInterface $input, OutputInterface $output) {
$output = new SymfonyStyleWithForcedLineLength($input, $output);
$output->title('First title');
$output->title('Second title');
};