From 177e8556e04d4b61976987692e31c26e8c0c7432 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Mon, 11 Sep 2023 07:03:18 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Command/DevServerCommand.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Command/DevServerCommand.php b/src/Command/DevServerCommand.php index 1151cbcc..955d818b 100644 --- a/src/Command/DevServerCommand.php +++ b/src/Command/DevServerCommand.php @@ -120,14 +120,15 @@ protected function execute(InputInterface $input, OutputInterface $output): int $data = \json_decode($message[1]); if ($data[0] === Connection::MESSAGE_TYPE_VAR_DUMPER) { $io->title('VarDumper'); - } elseif($data[0] === Connection::MESSAGE_TYPE_LOGGER) { + } elseif ($data[0] === Connection::MESSAGE_TYPE_LOGGER) { $io->write('Logger'); } $io->writeln( sprintf( "\033[1;37m\033[47m%s\033[0m", $data[1] - )); + ) + ); $io->newLine(); } }