Skip to content

v0.9.0

Compare
Choose a tag to compare
@pepakriz pepakriz released this 18 Nov 17:57
· 28 commits to master since this release

New features:

  • Unused @throws reporting is disabled by default for subtypes without phpdoc.
    It can be enabled again by reportUnusedCheckedThrowsInSubtypes: 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