Checkstyle fix
This commit is contained in:
parent
3022cfb81a
commit
27862d6fb1
8 changed files with 21 additions and 24 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue