php-censor/docs/en/plugins/php_cs_fixes.md
2017-04-19 18:45:59 +07:00

662 B

Plugin PHP Coding Standards Fixer

Runs PHP Coding Standards Fixer against your build.

Configuration

Options

  • directory [string, optional] - The directory in which PHP CS Fixer should work (default: %BUILD_PATH%)
  • args [string, optional] - Command line args (in string format) to pass to PHP Coding Standards Fixer (default: ``)

Examples

test:
  php_cs_fixer:
    directory: "./my/dir/path" # == "%BUILD_PATH%/my/dir/path"
    args:      "--rules=@PSR2 --diff --verbose"
test:
  php_cs_fixer:
    directory: "%BUILD_PATH%/my/dir/path"
    args:      "--rules=@PSR2"