You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your sniffs are very helpful to us. We have classes (let's call them "repositories") that handle work with entities. In the class comments, we have:
/**
* Service for {@see ABCEntity}.
*/
final class ABCService
We have Use ABCEntity in uses. The problem is that sniff evaluates it as unnecessary and deletes use. From that moment on, we don't know exactly which entity it refers to. Switching "searchAnnotations: true" didn't help either.
Would it be possible to also take occurrences in @see in comments? We would like to use your sniff, but in its current state it is unusable for us.