diff --git a/src/Composer/Util/Svn.php b/src/Composer/Util/Svn.php index fc9a547ba..d5694b3be 100644 --- a/src/Composer/Util/Svn.php +++ b/src/Composer/Util/Svn.php @@ -121,7 +121,7 @@ class Svn } $errorOutput = $this->process->getErrorOutput(); - $fullOutput = join("\n", array($output, $errorOutput)); + $fullOutput = implode("\n", array($output, $errorOutput)); // the error is not auth-related if (false === stripos($fullOutput, 'Could not authenticate to server:')