Pantheon\Terminus\Commands\Remote\SSHBaseCommand::getCommandLine PHP Method

getCommandLine() private method

Gets the command-line args
private getCommandLine ( string $command_args ) : string
$command_args string
return string
    private function getCommandLine($command_args)
    {
        array_unshift($command_args, $this->command);
        return implode(" ", $command_args);
    }