From 13db8171c70b034284b7c57914193dfa39d1cd07 Mon Sep 17 00:00:00 2001 From: Jesus Manuel Olivas Date: Wed, 10 Jan 2018 12:41:00 -0800 Subject: [PATCH] [debug:event] Update display remove ending new line. (#3676) --- src/Command/Debug/EventCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/Debug/EventCommand.php b/src/Command/Debug/EventCommand.php index 126e9bc57..c5294fa73 100644 --- a/src/Command/Debug/EventCommand.php +++ b/src/Command/Debug/EventCommand.php @@ -112,7 +112,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $listeners[] = [ 'class' => $className, 'method' => $value[1], - 'events' => Yaml::dump($subscribedEventData, 4, 2) + 'events' => rtrim(Yaml::dump($subscribedEventData, 4, 2)) ]; }