Fixed command output, fixes #161

This commit is contained in:
William DURAND 2012-06-24 01:09:07 +02:00
commit 554132cffd
4 changed files with 8 additions and 27 deletions

View file

@ -105,17 +105,9 @@ EOT
}
if (true === $statusCode) {
$this->writeSection(
$output,
'<info>All SQL statements have been inserted.</info>',
'bg=black'
);
$output->writeln('<info>All SQL statements have been inserted.</info>');
} else {
$this->writeSection(
$output,
'<comment>No SQL statements found.</comment>',
'bg=black'
);
$output->writeln('<comment>No SQL statements found.</comment>');
}
}