1
0
Fork 0

Merge branch '1.1'

pull/5294/head
Jordi Boggiano 2016-05-05 14:57:13 +01:00
commit 9ecaec4cca
1 changed files with 4 additions and 4 deletions
src/Composer/Autoload

View File

@ -725,11 +725,11 @@ HEADER;
$filesystem = new Filesystem();
$vendorPathCode = ' ' . $filesystem->findShortestPathCode(realpath($targetDir), $vendorPath, true, true) . " . '";
$appBaseDirCode = ' ' . $filesystem->findShortestPathCode(realpath($targetDir), $basePath, true, true) . " . '";
$vendorPathCode = ' ' . $filesystem->findShortestPathCode(realpath($targetDir), $vendorPath, true, true) . " . '/";
$appBaseDirCode = ' ' . $filesystem->findShortestPathCode(realpath($targetDir), $basePath, true, true) . " . '/";
$absoluteVendorPathCode = ' ' . substr(var_export($vendorDir, true), 0, -1);
$absoluteAppBaseDirCode = ' ' . substr(var_export($baseDir, true), 0, -1);
$absoluteVendorPathCode = ' ' . substr(var_export(rtrim($vendorDir, '\\/') . '/', true), 0, -1);
$absoluteAppBaseDirCode = ' ' . substr(var_export(rtrim($baseDir, '\\/') . '/', true), 0, -1);
$initializer = '';
$prefix = "\0Composer\Autoload\ClassLoader\0";