Checkstyle fix

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

View file

@ -44,10 +44,8 @@ abstract class AbstractCommand extends ContainerAwareCommand
*/
protected $input;
use FormattingHelpers;
/**
* {@inheritdoc}
*/

View file

@ -11,7 +11,6 @@
namespace Propel\PropelBundle\Command;
use Propel\Runtime\Propel;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
@ -57,6 +56,7 @@ EOT
{
if (!$input->getOption('force')) {
$output->writeln('<error>You have to use the "--force" option to drop the database.</error>');
return;
}

View file

@ -19,9 +19,6 @@ use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Finder\Finder;
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
use Propel\PropelBundle\DataFixtures\Loader\YamlDataLoader;
use Propel\PropelBundle\DataFixtures\Loader\XmlDataLoader;
/**
* FixturesLoadCommand
*

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;
}

View file

@ -140,7 +140,8 @@ abstract class AbstractDataHandler
*
* @return string[]
*/
protected function getModelSearchPaths($connectionName) {
protected function getModelSearchPaths($connectionName)
{
$searchPath = array();
if (!empty($this->datasources[$connectionName]['connection']['model_paths'])) {