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
I have an part of legacy application that is added in symfony and i have a problem with annitationparser.
Annotation parser finds "@author" annotation, then immediatly tries to find annotation class for this annotation.
It finds my class named "author" (it's withouth namespace), properly parses it as not annotation (annotation metadata array has "is_annotation" set to false.
But then in DocParser.php (line 749) it does additional check for "author" class and this fails, as it check if this class is in array $this->ignoredAnnotationNames (and this array is empty, it never gets set).
And AnnotationReader global ignored annotation names is checked later in code :/
The text was updated successfully, but these errors were encountered:
I have an part of legacy application that is added in symfony and i have a problem with annitationparser.
Annotation parser finds "@author" annotation, then immediatly tries to find annotation class for this annotation.
It finds my class named "author" (it's withouth namespace), properly parses it as not annotation (annotation metadata array has "is_annotation" set to false.
But then in DocParser.php (line 749) it does additional check for "author" class and this fails, as it check if this class is in array $this->ignoredAnnotationNames (and this array is empty, it never gets set).
And AnnotationReader global ignored annotation names is checked later in code :/
The text was updated successfully, but these errors were encountered: