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'])); + } + } }