Checkstyle fix

This commit is contained in:
Kévin Gomez 2013-11-05 13:26:18 +00:00
commit 27862d6fb1
8 changed files with 21 additions and 24 deletions

View file

@ -46,6 +46,7 @@ class TableDropCommand extends ContainerAwareCommand
{
if (!$input->getOption('force')) {
$output->writeln('<error>You have to use the "--force" option to drop some tables.</error>');
return;
}
@ -90,7 +91,7 @@ class TableDropCommand extends ContainerAwareCommand
$connection->exec('SET FOREIGN_KEY_CHECKS = 0;');
array_walk($tablesToDelete, function(&$table, $key, $dbAdapter) {
array_walk($tablesToDelete, function (&$table, $key, $dbAdapter) {
$table = $dbAdapter->quoteIdentifierTable($table);
}, $adapter);