phpstan banned code
v3.0.0
Diese Bibliothek basiert auf PHPStan, um Aufrufe bestimmter Funktionen zu erkennen, die Sie in Ihrem Projekt nicht haben möchten. Sie können es beispielsweise in Ihren CI-Prozess einfügen, um sicherzustellen, dass kein Debug-/nicht standardmäßiger Code vorhanden ist (wie var_dump, Exit usw.).
Um diese Erweiterung zu verwenden, fordern Sie sie mit Composer an:
composer require --dev ekino/phpstan-banned-code
Wenn Sie https://github.com/phpstan/extension-installer verwenden, sind Sie fertig.
Wenn nicht, fügen Sie extension.neon
in die PHPStan-Konfiguration Ihres Projekts ein:
includes:
- vendor/ekino/phpstan-banned-code/extension.neon
Sie können diese Bibliothek mit Parametern konfigurieren:
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
ist der zurückgegebene Wert eines Knotens, siehe Methode getType()
.