Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / Style / SymfonyStyle / command / command_17.php
index e6a13558d046cccb63c84b8f291e94e53df41182..311e6b3928478540e56f79fe2d1a50cb8c7d76b8 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 symfony style helper methods handle trailing backslashes properly when decorating user texts
 return function (InputInterface $input, OutputInterface $output) {
-    $output = new SymfonyStyleWithForcedLineLength($input, $output);
+    $output = new SymfonyStyle($input, $output);
 
     $output->title('Title ending with \\');
     $output->section('Section ending with \\');