Quellcode durchsuchen

Replaced join() by implode()

Anael Ollier vor 10 Jahren
Ursprung
Commit
27074083cc
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/Composer/Util/Svn.php

+ 1 - 1
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:')