phpstan banned code
v3.0.0
이 라이브러리는 프로젝트에서 원하지 않는 특정 기능에 대한 호출을 감지하기 위해 PHPStan을 기반으로 합니다. 예를 들어 CI 프로세스에 이를 추가하여 디버그/비표준 코드(예: var_dump, 종료 등)가 없는지 확인할 수 있습니다.
이 확장을 사용하려면 Composer를 사용하여 요구하십시오.
composer require --dev ekino/phpstan-banned-code
https://github.com/phpstan/extension-installer를 사용하면 완료됩니다.
그렇지 않은 경우 프로젝트의 PHPStan 구성에 extension.neon
포함합니다.
includes:
- vendor/ekino/phpstan-banned-code/extension.neon
매개변수를 사용하여 이 라이브러리를 구성할 수 있습니다.
parameters:
banned_code:
nodes:
# enable detection of echo
-
type: Stmt_Echo
functions: null
# enable detection of eval
-
type: Expr_Eval
functions: null
# enable detection of die/exit
-
type: Expr_Exit
functions: null
# enable detection of a set of functions
-
type: Expr_FuncCall
functions:
- dd
- debug_backtrace
- dump
- exec
- passthru
- phpinfo
- print_r
- proc_open
- shell_exec
- system
- var_dump
# enable detection of print statements
-
type: Expr_Print
functions: null
# enable detection of shell execution by backticks
-
type: Expr_ShellExec
functions: null
# enable detection of `use TestsFooBar` in a non-test file
use_from_tests: true
# errors emitted by the extension are non-ignorable by default, so they cannot accidentally be put into the baseline.
non_ignorable: false # default is true
type
노드의 반환된 값입니다. getType()
메서드를 참조하세요.