1
0
Fork 0

Fix exclude-from-classmap being ignored when cwd has the wrong case on case insensitive filesystems

pull/6545/head
Jordi Boggiano 2017-07-06 09:53:33 +02:00
parent 47bc2fa51a
commit 81f65b7a2a
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class ClassMapGenerator
$map = array(); $map = array();
$filesystem = new Filesystem(); $filesystem = new Filesystem();
$cwd = getcwd(); $cwd = realpath(getcwd());
foreach ($path as $file) { foreach ($path as $file) {
$filePath = $file->getPathname(); $filePath = $file->getPathname();