TysonAndre / phan

Phan is a static analyzer for PHP. Phan prefers to avoid false-positives and attempts to prove incorrectness rather than correctness.
Other
0 stars 0 forks source link

Idea: Plugin to warn about echo/var_export/ to stdout/stderr in a subset of directories #145

Open TysonAndre opened 6 years ago

TysonAndre commented 6 years ago

and var_dump/print/printf/print_r/fprintf(STDOUT)/write

E.g. library code generally should syslog or use an error handler.

Some of these depend on the argument counts.

This sort of overlaps with phpcs