From da462aa337e8eb7522fe8d4f5bdc8831bd5ac01f Mon Sep 17 00:00:00 2001 From: William DURAND Date: Wed, 13 Apr 2011 17:01:55 +0200 Subject: [PATCH] Added output message to the 'build-model' command --- Command/BuildModelCommand.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Command/BuildModelCommand.php b/Command/BuildModelCommand.php index 0cf34ca..13fadf1 100644 --- a/Command/BuildModelCommand.php +++ b/Command/BuildModelCommand.php @@ -48,6 +48,9 @@ EOT protected function execute(InputInterface $input, OutputInterface $output) { $this->callPhing('om'); - } + foreach ($this->tempSchemas as $schemaFile => $schemaDetails) { + $output->writeln(sprintf('Built model classes for bundle "%s"', $schemaDetails['bundle'])); + } + } }