Closed
Description
Yaml::parse features a "conditional" @deprecated
tag; the text after the tag explains that only the feature to supply filepaths is deprecated and will be removed in v3.0. PHPStorm however doesn't know this and marks the method as deprecated by striking through every call to it:
I know it is a good habit to mark stuff that will be removed as @deprecated
, but I think in this case the @deprecated
tag is a bit overkill since it also "deprecates" valid method calls. What are your thoughts on this?