| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
When a source path contains a dot (e.g. test.1), it was assumed to be a single file and the /**/* suffix was not appended, so phpDocumentor never descended into the directory and reported an empty documentation set. The heuristic is dropped: each path now emits both /path and /path/**/* so that file paths still match exactly and directory paths still recurse.
| Back | FazBrowse Home | New Git URL |
Paths containing a dot (e.g. test.1) were treated as a single file and never expanded to /path/**/*, so phpDocumentor reported an empty documentation set when run with -d test.1.
The heuristic is dropped: each path emits both /path and /path/**/*, so file paths still match exactly and directory paths recurse regardless of dots in their names.
Fixes #3940