From d4c6d0a5864142ba7cd0827dcf0ec6c64abb4da8 Mon Sep 17 00:00:00 2001 From: William DURAND Date: Tue, 19 Apr 2011 14:13:08 +0200 Subject: [PATCH] Fixed output for command: build-model --- Command/BuildModelCommand.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Command/BuildModelCommand.php b/Command/BuildModelCommand.php index 42d449a..15695c2 100644 --- a/Command/BuildModelCommand.php +++ b/Command/BuildModelCommand.php @@ -6,15 +6,6 @@ use Propel\PropelBundle\Command\PhingCommand; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -/* - * This file is part of the Symfony framework. - * - * (c) Fabien Potencier - * - * This source file is subject to the MIT license that is bundled - * with this source code in the file LICENSE. - */ - /** * BuildCommand. * @@ -50,7 +41,7 @@ EOT $this->callPhing('om'); foreach ($this->tempSchemas as $schemaFile => $schemaDetails) { - $output->writeln(sprintf('Built Model classes for bundle "%s" from "%s"', $schemaDetails['bundle'], $schemaDetails['path'])); + $output->writeln(sprintf('Built Model classes for bundle %s from %s.', $schemaDetails['bundle'], $schemaDetails['path'])); } } }