Skip best adapter since it can create issues on some platforms, fixes #2168
parent
0044c75ca0
commit
3346609c5d
|
@ -54,7 +54,7 @@ class ClassMapGenerator
|
||||||
if (is_file($path)) {
|
if (is_file($path)) {
|
||||||
$path = array(new \SplFileInfo($path));
|
$path = array(new \SplFileInfo($path));
|
||||||
} elseif (is_dir($path)) {
|
} elseif (is_dir($path)) {
|
||||||
$path = Finder::create()->useBestAdapter()->files()->followLinks()->name('/\.(php|inc)$/')->in($path);
|
$path = Finder::create()->files()->followLinks()->name('/\.(php|inc)$/')->in($path);
|
||||||
} else {
|
} else {
|
||||||
throw new \RuntimeException(
|
throw new \RuntimeException(
|
||||||
'Could not scan for classes inside "'.$path.
|
'Could not scan for classes inside "'.$path.
|
||||||
|
|
Loading…
Reference in New Issue