57afdf06b43f0e8a5d5282e804c5476c736a703e
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / Style / SymfonyStyle / command / command_9.php
1 <?php
2
3 use Symfony\Component\Console\Input\InputInterface;
4 use Symfony\Component\Console\Output\OutputInterface;
5 use Symfony\Component\Console\Style\SymfonyStyle;
6
7 //Ensure that all lines are aligned to the begin of the first line in a multi-line block
8 return function (InputInterface $input, OutputInterface $output) {
9     $output = new SymfonyStyle($input, $output);
10     $output->block(array('Custom block', 'Second custom block line'), 'CUSTOM', 'fg=white;bg=green', 'X ', true);
11 };