<?phpuseSymfony\Component\Console\Input\InputInterface;
useSymfony\Component\Console\Output\OutputInterface;
useSymfony\Component\Console\Style\SymfonyStyle;
//Ensure has single blank line between titles and blocksreturnfunction (InputInterface $input, OutputInterface $output) {
$output = newSymfonyStyle($input, $output);
$output->title('Title');
$output->warning('Lorem ipsum dolor sit amet');
$output->title('Title');
};