From 8e99cec3e78e8068de57b2c7b4e4c0c94cc42646 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 28 Oct 2015 00:04:33 +0000 Subject: [PATCH] Fix ref to findShortestPath --- src/Composer/Util/Filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Util/Filesystem.php b/src/Composer/Util/Filesystem.php index 88a6123a1..93394e2c7 100644 --- a/src/Composer/Util/Filesystem.php +++ b/src/Composer/Util/Filesystem.php @@ -516,7 +516,7 @@ class Filesystem { $cwd = getcwd(); - $relativePath = $this->filesystem->findShortestPath($link, $target); + $relativePath = $this->findShortestPath($link, $target); chdir(dirname($link)); $result = @symlink($relativePath, $link);