public function preDeploy(array $commands) { foreach ($commands as $command) { $this->cli->out("Execute : <white>{$command}"); $output = $this->git->exec($command); $output = implode(' ', $output); $this->cli->out("Result : <white>{$output}"); } }