Skip to content

Commit

Permalink
Merge pull request #95 from Laykou/patch-1
Browse files Browse the repository at this point in the history
Make runCommand method compatible with parent
  • Loading branch information
lorenzo committed Jul 6, 2015
2 parents dc9c5b3 + 295f125 commit 09d5c68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Shell/MigrationsShell.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ public function main()
*
* {@inheritDoc}
*/
public function runCommand($argv, $autoMethod = false)
public function runCommand($argv, $autoMethod = false, $extra = [])
{
array_unshift($argv, 'migrations');
$this->argv = $argv;
return parent::runCommand($argv, $autoMethod);
return parent::runCommand($argv, $autoMethod, $extra);
}

/**
Expand Down

0 comments on commit 09d5c68

Please sign in to comment.