From 1c2ade61ab4ccdb0db7ec7465bb77c917159aaa4 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sun, 19 Jun 2011 10:05:30 +0200 Subject: [PATCH] DDC-1214 - Fix UpdateCommand::getFullName() --- .../ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php index b96a5a673..a39995e0f 100644 --- a/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php +++ b/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php @@ -128,8 +128,8 @@ EOT $output->writeln(sprintf('The Schema-Tool would execute "%s" queries to update the database.', count($sqls))); $output->writeln('Please run the operation by passing one of the following options:'); - $output->writeln(sprintf(' %s --force to execute the command', $this->getFullName())); - $output->writeln(sprintf(' %s --dump-sql to dump the SQL statements to the screen', $this->getFullName())); + $output->writeln(sprintf(' %s --force to execute the command', $this->getName())); + $output->writeln(sprintf(' %s --dump-sql to dump the SQL statements to the screen', $this->getName())); } } }