From 4f9f6c443e6caf790a7792021ea8480e7dcaca66 Mon Sep 17 00:00:00 2001 From: RomainMazB Date: Tue, 5 Oct 2021 23:20:52 +0200 Subject: [PATCH] Display generated files in generator commands --- src/Scaffold/GeneratorCommand.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Scaffold/GeneratorCommand.php b/src/Scaffold/GeneratorCommand.php index d0ef7b0fa..6445e452e 100644 --- a/src/Scaffold/GeneratorCommand.php +++ b/src/Scaffold/GeneratorCommand.php @@ -117,6 +117,8 @@ public function makeStub($stubName) } $this->files->put($destinationFile, $destinationContent); + + $this->comment('File generated: ' . str_replace(base_path(), '', $destinationFile)); } /**