TYPO3  7.6
command_6.php
Go to the documentation of this file.
1 <?php
2 
6 
7 //Ensure has proper blank line after text block when using a block like with SymfonyStyle::success
8 return function (InputInterface $input, OutputInterface $output) {
9  $output = new SymfonyStyle($input, $output);
10 
11  $output->listing(array(
12  'Lorem ipsum dolor sit amet',
13  'consectetur adipiscing elit',
14  ));
15  $output->success('Lorem ipsum dolor sit amet');
16 };