PHP Classes

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

Recommend this page to a friend!
  Classes of Dawood Ikhlaq   Recon Falcon   vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php   Download  
File: vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Recon Falcon
Scan a list of pages to find unreachable links
Author: By
Last change:
Date: 5 years ago
Size: 1,185 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 has single blank line after any text and a title
return function (InputInterface $input, OutputInterface $output) {
   
$output = new SymfonyStyle($input, $output);

   
$output->write('Lorem ipsum dolor sit amet');
   
$output->title('First title');

   
$output->writeln('Lorem ipsum dolor sit amet');
   
$output->title('Second title');

   
$output->write('Lorem ipsum dolor sit amet');
   
$output->write('');
   
$output->title('Third title');

   
//Ensure edge case by appending empty strings to history:
   
$output->write('Lorem ipsum dolor sit amet');
   
$output->write(array('', '', ''));
   
$output->title('Fourth title');

   
//Ensure have manual control over number of blank lines:
   
$output->writeln('Lorem ipsum dolor sit amet');
   
$output->writeln(array('', '')); //Should append an extra blank line
   
$output->title('Fifth title');

   
$output->writeln('Lorem ipsum dolor sit amet');
   
$output->newLine(2); //Should append an extra blank line
   
$output->title('Fifth title');
};