We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for this nice tool! The generated report is very useful, I noticed one issue only.
Let this be my hierarchy in the previous release:
interface SomeInterface {} class SomeClass implements SomeInterface {}
And that's my hierarchy in the new release:
interface SomeInterface {} interface AnotherInterface extends SomeInterface {} class SomeClass implements AnotherInterface {}
Then the report will incorrectly state that SomeInterface has been removed from the set of interfaces implemented by SomeClass.
SomeInterface
SomeClass
The text was updated successfully, but these errors were encountered:
#119 interface is no longer reported as removed if it gets implemente…
df77875
…d by a new interface hierarchy
Fixed on develop branch.
develop
Sorry, something went wrong.
Thanks, that was quick. Appreciated very much!
No branches or pull requests
Thanks for this nice tool! The generated report is very useful, I noticed one issue only.
Let this be my hierarchy in the previous release:
And that's my hierarchy in the new release:
Then the report will incorrectly state that
SomeInterface
has been removed from the set of interfaces implemented bySomeClass
.The text was updated successfully, but these errors were encountered: