1
0
mirror of synced 2025-02-20 22:23:14 +03:00

DDC-1214 - Fix UpdateCommand::getFullName()

This commit is contained in:
Benjamin Eberlei 2011-06-19 10:05:30 +02:00
parent c62e27898c
commit 1c2ade61ab

View File

@ -128,8 +128,8 @@ EOT
$output->writeln(sprintf('The Schema-Tool would execute <info>"%s"</info> queries to update the database.', count($sqls)));
$output->writeln('Please run the operation by passing one of the following options:');
$output->writeln(sprintf(' <info>%s --force</info> to execute the command', $this->getFullName()));
$output->writeln(sprintf(' <info>%s --dump-sql</info> to dump the SQL statements to the screen', $this->getFullName()));
$output->writeln(sprintf(' <info>%s --force</info> to execute the command', $this->getName()));
$output->writeln(sprintf(' <info>%s --dump-sql</info> to dump the SQL statements to the screen', $this->getName()));
}
}
}