v0.9.0
New features:
-
Unused
@throws
reporting is disabled by default for subtypes without phpdoc.
It can be enabled again byreportUnusedCheckedThrowsInSubtypes: true
. What does it mean? You can remove all unnecessary@throws void
phpdoc when you preserve the default value.
#95, #97, thanks @marcospassos -
Error reporting can be disabled as per class basis. It's useful for TestCase methods etc.
#93, thanks @marcospassos -
New rule
DeadCatchUnion
which reports redundant types in catch statement.
#96
Improvements:
- Improved annotation reader to traverse class hierarchy #94, thanks @marcospassos