Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / Style / SymfonyStyle / command / command_2.php
index 6004e3d6c29726a2a78171ca10706df44dc84d32..791b626f24f48ab665dbe29673b574137e7280d6 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 has single blank line between blocks
 return function (InputInterface $input, OutputInterface $output) {
-    $output = new SymfonyStyleWithForcedLineLength($input, $output);
+    $output = new SymfonyStyle($input, $output);
     $output->warning('Warning');
     $output->caution('Caution');
     $output->error('Error');