From 967bc8769a251219ebe6f260c009da2320a46ca3 Mon Sep 17 00:00:00 2001 From: William Durand Date: Mon, 18 Nov 2013 14:27:18 +0100 Subject: [PATCH] Fix previous commit --- Command/BuildCommand.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Command/BuildCommand.php b/Command/BuildCommand.php index ef9f935..680d27e 100644 --- a/Command/BuildCommand.php +++ b/Command/BuildCommand.php @@ -51,9 +51,9 @@ class BuildCommand extends AbstractCommand { if (!$input->getOption('sql')) { $in = new ArrayInput(array( - 'command' => 'propel:model:build', - '--connection' => $input->getOption('connection'), - '--verbose' => $input->getOption('verbose') + 'command' => 'propel:model:build', + '--connection' => $input->getOption('connection'), + '--verbose' => $input->getOption('verbose'), )); $modelCommand = $this->getApplication()->find('propel:model:build'); $res = $modelCommand->run($in, $output); @@ -61,9 +61,9 @@ class BuildCommand extends AbstractCommand if (!$input->getOption('classes')) { $in = new ArrayInput(array( - 'command' => 'propel:build:sql', - '--connection' => $input->getOption('connection'), - '--verbose' => $input->getOption('verbose') + 'command' => 'propel:build:sql', + '--connection' => $input->getOption('connection'), + '--verbose' => $input->getOption('verbose'), )); $sqlCommand = $this->getApplication()->find('propel:sql:build'); $sqlCommand->run($in, $output); @@ -71,10 +71,10 @@ class BuildCommand extends AbstractCommand if ($input->getOption('insert-sql')) { $in = new ArrayInput(array( - 'command' => 'propel:sql:insert', - '--connection' => $input->getOption('connection'), - '--verbose' => $input->getOption('verbose') - '--force' => true, + 'command' => 'propel:sql:insert', + '--connection' => $input->getOption('connection'), + '--verbose' => $input->getOption('verbose'), + '--force' => true, )); $insertCommand = $this->getApplication()->find('propel:sql:insert'); $insertCommand->run($in, $output);