PHP Classes

File: vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php

Recommend this page to a friend!
  Classes of Dawood Ikhlaq   ReconCat   vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php   Download  
File: vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php
Role: Example script
Content type: text/plain
Description: Example script
Class: ReconCat
Retrieve past versions pages from Web Archive
Author: By
Last change:
Date: 1 year ago
Size: 853 bytes
 

Contents

Class file image Download
<?php

use Symfony\Component\Console\Input\InputInterface;
use
Symfony\Component\Console\Output\OutputInterface;
use
Symfony\Component\Console\Style\SymfonyStyle;

// ensure that block() behaves properly with a type and without prefix
return function (InputInterface $input, OutputInterface $output) {
   
$output = new SymfonyStyle($input, $output);
   
$output->block(
       
'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum',
       
'TEST'
   
);
};