table of contents
other versions
- stretch 2.7.1-1
- testing 3.4.0-2
- unstable 3.4.0-2
- experimental 3.4.2-1
phpcbf(1) | General Commands Manual | phpcbf(1) |
NAME¶
phpcbf - automatically fix errors found by PHPCSSYNOPSIS¶
phpcbf [-nwli] [-d key[=value]] [--stdin-path=stdinPath] [--standard=standard] [--sniffs=sniffs] [--exclude=sniffs] [--suffix=suffix] [--severity=severity] [--error-severity=severity] [--warning-severity=severity] [--tab-width=tabWidth] [--encoding=encoding] [--extensions=extensions] [--ignore=patterns] [--bootstrap=bootstrap] [--file-list=fileList] file ...DESCRIPTION¶
phpcbf (or PHP Code Beautifier and Fixer) is a PHP script to automatically fix as many sniff violations as possible.PARAMETERS¶
file- One or more files and/or directories to fix
fileList
- A file containing a list of files and/or directories to check (one per line)
stdinPath
- If processing STDIN, the file path that STDIN will be processed as
bootstrap
- A comma separated list of files to run before processing starts
encoding
- The encoding of the files being fixed (default is iso-8859-1)
extensions
- A comma separated list of file extensions to fix (extension filtering only valid when checking a directory). The type of the file can be specified using: ext/type; e.g., module/php,es/js
patterns
- A comma separated list of patterns to ignore files and directories
sniffs
- A comma separated list of sniff codes to include or exclude during checking (all sniffs must be part of the specified standard)
severity
- The minimum severity required to fix an error or warning
standard
- The name or path of the coding standard to use
suffix
- Write modified files to a filename using this suffix ("diff" and "patch" are not used in this mode)
tabWidth
- The number of spaces each tab represents
OPTION¶
-n- Do not fix warnings (shortcut for --warning-severity=0)
-w
- Fix both warnings and errors (on by default)
-l
- Local directory only, no recursion
-i
- Show a list of installed coding standards
-d
- Set the key php.ini value to value or true if value is omitted
--help
- Print the help message
--version
- Print version information
--no-patch
- Do not make use of the "diff" or "patch" programs
SEE ALSO¶
phpcs(1)2016-04-06 |