From c59f83ba271ce5fe84e96ce2843f57e4881e9edb Mon Sep 17 00:00:00 2001 From: pxgamer Date: Mon, 26 Nov 2018 12:39:32 +0000 Subject: [PATCH] phpmd: add page --- pages/common/phpmd.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pages/common/phpmd.md diff --git a/pages/common/phpmd.md b/pages/common/phpmd.md new file mode 100644 index 000000000..a9d63f210 --- /dev/null +++ b/pages/common/phpmd.md @@ -0,0 +1,31 @@ +# phpmd + +> A PHP mess detector that checks for common potential problems. + +- Display a list of available rulesets and formats: + +`phpmd` + +- Scan a file or directory for problems using comma-separated rulesets: + +`phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}}` + +- Specify the minimum priority threshold for rules: + +`phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --minimumpriority {{priority}}` + +- Include only the specified extensions in analysis: + +`phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --suffixes {{extensions}}` + +- Exclude the specified comma-separated directories: + +`phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --exclude {{directory_patterns}}` + +- Output the results to a file instead of stdout: + +`phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --reportfile {{path/to/report_file}}` + +- Ignore the use of warning-suppression PHPDoc comments: + +`phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --strict`