merge fix from https://github.com/composer/composer/pull/8651
parent
04a18c72ba
commit
cc5c5dbee1
|
@ -268,7 +268,7 @@ EOF;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($ambiguousClasses as $className => $ambigiousPaths) {
|
foreach ($ambiguousClasses as $className => $ambigiousPaths) {
|
||||||
$cleanPath = str_replace(array('$vendorDir . \'', "',\n"), array($vendorPath, ''), $classMap[$className]);
|
$cleanPath = str_replace(array('$vendorDir . \'', '$baseDir . \'', "',\n"), array($vendorPath, $basePath, ''), $classMap[$className]);
|
||||||
|
|
||||||
$this->io->writeError(
|
$this->io->writeError(
|
||||||
'<warning>Warning: Ambiguous class resolution, "'.$className.'"'.
|
'<warning>Warning: Ambiguous class resolution, "'.$className.'"'.
|
||||||
|
|
Loading…
Reference in New Issue