phpstan banned code
v3.0.0
Эта библиотека основана на PHPStan и позволяет обнаруживать вызовы определенных функций, которые вам не нужны в вашем проекте. Например, вы можете добавить его в свой процесс CI, чтобы убедиться в отсутствии отладочного/нестандартного кода (например, var_dump, выход,...).
Чтобы использовать это расширение, запросите его с помощью Composer:
composer require --dev ekino/phpstan-banned-code
Когда вы используете https://github.com/phpstan/extension-installer, все готово.
Если нет, включите extension.neon
в конфигурацию PHPStan вашего проекта:
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()
.