phpstan banned code
v3.0.0
ไลบรารีนี้ใช้ PHPStan เพื่อตรวจจับการเรียกใช้ฟังก์ชันเฉพาะที่คุณไม่ต้องการในโปรเจ็กต์ของคุณ ตัวอย่างเช่น คุณสามารถเพิ่มลงในกระบวนการ CI ของคุณเพื่อให้แน่ใจว่าไม่มีโค้ดดีบัก/ไม่ใช่มาตรฐาน (เช่น var_dump, exit, ...)
หากต้องการใช้ส่วนขยายนี้ กำหนดให้ใช้ 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()