There seems to be quite a lot of static code analysis tools for PHP, could you please suggest the one, which can detect exceptions, which are thrown in the PHP code, but are never caught? (the ones, which can theoretically stop the execution on the PHP script).
I would be happy enough to see only stuff like throw new SomeException(), where SomeException extends Exception.
I am not looking for something too sophisticated - just to warn me that if I run someFunctionThatCanThrow ('cause there is throw statement inside) from index.php (you get the point), I can get in trouble. Even if in the runtime that would never happen.
Thanks.
eval "$any_string()";or$this->$anotherstring(). – Piskvor Nov 25 '11 at 11:22throw new SomeException(). I try not use any sort of PHP magic in my code. – Fluffy Nov 25 '11 at 11:25