diff --git a/src/Shell/MigrationsShell.php b/src/Shell/MigrationsShell.php index d742fab2..1c1f7a2e 100644 --- a/src/Shell/MigrationsShell.php +++ b/src/Shell/MigrationsShell.php @@ -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); } /**