PHP Coding Standards Fixer

2018 年 4 月 21 日1540

Usage

The fix command tries to fix as much coding standards

problems as possible on a given file or files in a given directory and its subdirectories:

$ php php-cs-fixer.phar fix /path/to/dir



$ php php-cs-fixer.phar fix /path/to/file



By default --path-mode is set to override, which means, that if you specify the path to a file or a directory via

command arguments, then the paths provided to a Finder in config file will be ignored. You can use --path-mode=intersection

to merge paths from the config file and from the argument:

$ php php-cs-fixer.phar fix --path-mode=intersection /path/to/dir



The --format option for the output format. Supported formats are txt (default one), json, xml, checkstyle and junit.

NOTE: the output for the following formats are generated in accordance with XML schemas

junit follows the JUnit xml schema from Jenkins

checkstyle follows the common

0 0