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

Look into warning about infinite recursive loops #211

Closed TysonAndre closed 5 years ago

TysonAndre commented 5 years ago

E.g. foo() calling foo(), $this->foo() calling $this->foo(), etc. (e.g. with same params)

Could use the variable graphs to see if the variables were modified.