Go\Instrument\FileSystem\Enumerator::getFileFullPath PHP Method

getFileFullPath() protected method

This is used for testing purpose with virtual file system. In a vfs the 'realPath' methode will always return false. So we have a chance to mock this single function to return different path.
protected getFileFullPath ( SplFileInfo $file ) : string
$file SplFileInfo
return string
    protected function getFileFullPath(\SplFileInfo $file)
    {
        return $file->getRealPath();
    }