
phploc
List of commands for phploc:
-
phploc:analyze Analyze a directory and print the result.$ phploc ${path-to-directory}try on your machineexplain this command
-
phploc:analyze:export:csv Log the results to a specific CSV file.$ phploc ${path-to-directory} --log-csv ${filename}try on your machineexplain this command
-
phploc:analyze:export:xml Log the results to a specific XML file.$ phploc ${path-to-directory} --log-xml ${filename}try on your machineexplain this command
-
phploc:tldr:1f77e phploc: Exclude a specific directory from analysis.$ phploc ${path-to-directory} --exclude ${path-to-exclude_directory}try on your machineexplain this command
-
phploc:tldr:2a92c phploc: Count PHPUnit test case classes and test methods.$ phploc ${path-to-directory} --count-teststry on your machineexplain this command
-
phploc:tldr:4f193 phploc: Exclude specific files from a comma-separated list (globs are allowed).$ phploc ${path-to-directory} --names-exclude ${files}try on your machineexplain this command
-
phploc:tldr:642aa phploc: Include only specific files from a comma-separated list (globs are allowed).$ phploc ${path-to-directory} --names ${files}try on your machineexplain this command