From a9fc18a52880a69f864a87cde77f3748c203fb01 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Fri, 29 Mar 2019 10:56:13 +0100 Subject: [PATCH] uncomment the "Before" code part for better syntax highlighting --- console/style.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); + // ... } }