99253a6c08a835177d8cfd3a5afa780658b973ba
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / Style / SymfonyStyle / command / command_3.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 has single blank line between two titles
8 return function (InputInterface $input, OutputInterface $output) {
9     $output = new SymfonyStyle($input, $output);
10     $output->title('First title');
11     $output->title('Second title');
12 };