From d2ed68b141089adcbab39905fd5a55e8d7b7cf20 Mon Sep 17 00:00:00 2001 From: Jess Archer Date: Tue, 8 Aug 2023 13:30:31 +1000 Subject: [PATCH 1/2] Show the name at the end of the installer --- src/NewCommand.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index f7fb552c..a900d124 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -193,7 +193,9 @@ protected function execute(InputInterface $input, OutputInterface $output) $output->writeln(''); } - $output->writeln(' INFO Application ready! Build something amazing.'.PHP_EOL); + $output->writeln(" INFO Application ready in [{$name}].".PHP_EOL); + + $output->writeln(' INFO Build something amazing.'.PHP_EOL); } return $process->getExitCode(); From 13af2c7843ec3a2e7ef4d21b451c377fe4bbb1f2 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Aug 2023 09:07:25 -0500 Subject: [PATCH 2/2] Update NewCommand.php --- src/NewCommand.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index a900d124..3341e016 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -193,9 +193,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $output->writeln(''); } - $output->writeln(" INFO Application ready in [{$name}].".PHP_EOL); - - $output->writeln(' INFO Build something amazing.'.PHP_EOL); + $output->writeln(" INFO Application ready in [{$name}]. Build something amazing.".PHP_EOL); } return $process->getExitCode();