From 108ef28259764a2ee00045379844d39150bbcc17 Mon Sep 17 00:00:00 2001 From: Christian Archer Date: Mon, 2 Dec 2019 23:25:30 +0200 Subject: [PATCH] Fix incompatibility with symfony/console 5 --- src/Convert.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Convert.php b/src/Convert.php index e49c431..f46d0c1 100644 --- a/src/Convert.php +++ b/src/Convert.php @@ -53,5 +53,7 @@ protected function execute(InputInterface $input, OutputInterface $output) } else { $output->writeln($markdownData, OutputInterface::OUTPUT_RAW); } + + return 0; } }