Эх сурвалжийг харах

[Downloader] fixed incorrect variable name in FileDownloader class.

Hugo Hamon 13 жил өмнө
parent
commit
535455606b

+ 1 - 1
src/Composer/Downloader/FileDownloader.php

@@ -75,7 +75,7 @@ abstract class FileDownloader implements DownloaderInterface
                 ),
             ));
 
-            copy($url, $filename, $ctx);
+            copy($url, $fileName, $ctx);
         } else {
             copy($url, $fileName);
         }