File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ # PHP DocBlock Checker
2+ Check PHP files within a directory for appropriate use of Docblocks.
3+
4+ ## Installation
5+ ** Composer** :<br >
6+ <code >
7+ composer require block8/php-docblock-checker
8+ </code >
9+
10+ ## Usage
11+ ** CMD** :<br >
12+ <code >
13+ call vendor/bin/phpdoccheck {params}
14+ </code >
15+
16+ ## Parameters
17+
18+ Short | Long | Description
19+ ------------ | ------------- | -----------
20+ -h | --help | Display help message.
21+ -x | --exclude=EXCLUDE | Files and directories to exclude.
22+ -d | --directory=DIRECTORY | Directory to scan. [ default: "./"]
23+ none | --skip-classes | Don't check classes for docblocks.
24+ none | --skip-methods | Don't check methods for docblocks.
25+ none | --skip-signatures | Don't check docblocks against method signatures.
26+ -j | --json | Output JSON instead of a log.
27+ -l | --files-per-line=FILES-PER-LINE | Number of files per line in progress [ default: 50]
28+ -w | --fail-on-warnings | Consider the check failed if any warnings are produced.
29+ -i | --info-only | Information-only mode, just show summary.
30+ -q | --quiet | Do not output any message.
31+ -V | --version | Display this application version.
32+ none | --ansi | Force ANSI output.
33+ none | --no-ansi | Disable ANSI output.
34+ -n | --no-interaction | Do not ask any interactive question.
35+ -v -vv -vvv | --verbose | Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug.
You can’t perform that action at this time.
0 commit comments