Fixed Strict Standards notices

Fixed Strict Standard notice for PHPCI/Command/GenerateCommand.php
Fixed Strict Standard notice for PHPCI/Command/InstallCommand.php
This commit is contained in:
Kinn Coelho Julião 2013-05-16 15:43:17 -04:00
parent 3b196a3072
commit a071ef19ab
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: ');