diff --git a/src/Command/MigrateCommand.php b/src/Command/MigrateCommand.php index c90d452..66d16a9 100644 --- a/src/Command/MigrateCommand.php +++ b/src/Command/MigrateCommand.php @@ -40,7 +40,7 @@ public function __invoke(Route $route, AdapterInterface $console) \exec( $this->shellPath.' migrate '. '-e '.$this->env.' '. - '-c '.$this->configPath.' '. + '-c '.$this->configPath.' ', $this->output, $this->failure ); diff --git a/src/Command/ResetCommand.php b/src/Command/ResetCommand.php index 7d8a039..81b4d2c 100644 --- a/src/Command/ResetCommand.php +++ b/src/Command/ResetCommand.php @@ -37,7 +37,7 @@ public function __invoke(Route $route, AdapterInterface $console) \exec( $this->shellPath.' rollback -t 0 -f '. '-e '.$this->env.' '. - '-c '.$this->configPath.' '. + '-c '.$this->configPath.' ', $this->output, $this->failure ); diff --git a/src/Command/RollbackCommand.php b/src/Command/RollbackCommand.php index f606309..5da97a7 100644 --- a/src/Command/RollbackCommand.php +++ b/src/Command/RollbackCommand.php @@ -37,7 +37,7 @@ public function __invoke(Route $route, AdapterInterface $console) \exec( $this->shellPath.' rollback '. '-e '.$this->env.' '. - '-c '.$this->configPath.' '. + '-c '.$this->configPath.' ', $this->output, $this->failure );