Merge branch 'master' of github.com:kinncj/PHPCI

This commit is contained in:
Kinn Coelho Julião 2013-05-16 18:06:44 -04:00
commit 3b18f477a0
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ class GenerateCommand extends Command
/**
* Generates Model and Store classes by reading database meta data.
*/
protected function execute()
protected function execute(InputInterface $input, OutputInterface $output)
{
$gen = new \b8\Database\CodeGenerator(\b8\Database::getConnection(), 'PHPCI', PHPCI_DIR . '/PHPCI/');
$gen->generateModels();

View file

@ -35,7 +35,7 @@ class InstallCommand extends Command
/**
* Installs PHPCI - Can be run more than once as long as you ^C instead of entering an email address.
*/
protected function execute()
protected function execute(InputInterface $input, OutputInterface $output)
{
// Gather initial data from the user:
$dbHost = $this->ask('Enter your MySQL host: ');