PHP Classes

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

Recommend this page to a friend!
  Classes of Dawood Ikhlaq   Recon Falcon   vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php   Download  
File: vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.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: 607 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 long words are properly wrapped in blocks
return function (InputInterface $input, OutputInterface $output) {
   
$word = 'Lopadotemachoselachogaleokranioleipsanodrimhypotrimmatosilphioparaomelitokatakechymenokichlepikossyphophattoperisteralektryonoptekephalliokigklopeleiolagoiosiraiobaphetraganopterygon';
   
$sfStyle = new SymfonyStyle($input, $output);
   
$sfStyle->block($word, 'CUSTOM', 'fg=white;bg=blue', ' § ', false);
};