diff --git a/console/style.rst b/console/style.rst index 7f8446fbb32..86192b70870 100644 --- a/console/style.rst +++ b/console/style.rst @@ -365,10 +365,11 @@ of your commands to change their appearance:: protected function execute(InputInterface $input, OutputInterface $output) { // Before - // $io = new SymfonyStyle($input, $output); + $io = new SymfonyStyle($input, $output); // After $io = new CustomStyle($input, $output); + // ... } }