Daniel Jakob
Daniel Jakob
@aorenste I ran some tests with this with the following result: ``` php5.6 test.php string(3) "bla" ``` ``` php7.0 test.php string(3) "bla" ``` ``` hhvm test.php string(0) "" ``` ```...
I stumbled across this when trying to use composer in php7 mode. symfony/finder@d04fb01c1aa6e3f2f62e5505b62ede74f7cd4d1a is related to this problem as its the piece of code which breaks composer by calling `getPath`....
Ok, some more details after digging a bit. Hhvms `DirectoryIterator::next()` passes a boolean `false` to the underlying `SplFileInfo::setPathName`. `SplFileInfo::getPath()` invokes `dirname` with this bool which leads to an error in...
Related #7869