You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For those of us using this plugin outside of the .org Code Reference, it would be really helpful if WP_Parser\get_wp_files() could follow symlinks it encounters while recursing the directory structure.
All that would be necessary to enable this would be to instantiate the RecursiveDirectoryIterator with:
new \RecursiveDirectoryIterator( $directory, \FilesystemIterator::FOLLOW_SYMLINKS )
instead of the current:
new \RecursiveDirectoryIterator( $directory )
The text was updated successfully, but these errors were encountered:
For those of us using this plugin outside of the .org Code Reference, it would be really helpful if
WP_Parser\get_wp_files()
could follow symlinks it encounters while recursing the directory structure.All that would be necessary to enable this would be to instantiate the
RecursiveDirectoryIterator
with:instead of the current:
The text was updated successfully, but these errors were encountered: