Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / Style / SymfonyStyle / command / command_11.php
index 678afea5d728ec129a578f821564b8075c751b98..3ed897def42cefda7075f553a6c8cc59463fb440 100644 (file)
@@ -2,11 +2,11 @@
 
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Output\OutputInterface;
-use Symfony\Component\Console\Tests\Style\SymfonyStyleWithForcedLineLength;
+use Symfony\Component\Console\Style\SymfonyStyle;
 
 // ensure long words are properly wrapped in blocks
 return function (InputInterface $input, OutputInterface $output) {
     $word = 'Lopadotemachoselachogaleokranioleipsanodrimhypotrimmatosilphioparaomelitokatakechymenokichlepikossyphophattoperisteralektryonoptekephalliokigklopeleiolagoiosiraiobaphetraganopterygon';
-    $sfStyle = new SymfonyStyleWithForcedLineLength($input, $output);
+    $sfStyle = new SymfonyStyle($input, $output);
     $sfStyle->block($word, 'CUSTOM', 'fg=white;bg=blue', ' ยง ', false);
 };