From 695db5a11c7430a80d55e9ae858b0b85ca1434b0 Mon Sep 17 00:00:00 2001 From: Anton Medvedev Date: Tue, 5 May 2020 00:06:30 +0300 Subject: [PATCH] Fix style --- src/Console/InitCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Console/InitCommand.php b/src/Console/InitCommand.php index 87744f5a6..18e18bf28 100644 --- a/src/Console/InitCommand.php +++ b/src/Console/InitCommand.php @@ -50,10 +50,10 @@ protected function execute(InputInterface $input, OutputInterface $output) if (file_exists($filepath)) { $output->writeln([ - $formatter->formatBlock(sprintf( - 'The file "%s" already exist.', - $filepath, - ), 'bg=red;fg=white', true), + $formatter->formatBlock( + sprintf('The file "%s" already exist.', $filepath), + 'bg=red;fg=white', true + ), ]); return 2; }