php-censor/docs/en/plugins/phan.md
2018-05-01 11:05:51 +02:00

570 B

Plugin Phan

Runs Phan against your build.

Configuration

Options

  • directory [optional, string] - Directory within which you want Phan to run (default: %BUILD_PATH%).
  • ignore [optional] - A list of files / paths to ignore (default: build_settings > ignore).
  • allowed_warnings [optional, int] - The error limit for a successful build (default: 0). -1 disables warnings.

Examples

test:
  phan:
    directory: "app"
    allowed_warnings: 10
    ignore:
      - "app/my/path"