PHP TypeLang Help

@not-deprecated

The @not-deprecated tag marks an element as explicitly not deprecated, overriding a @deprecated tag it would otherwise inherit from a parent class or interface.

"@not-deprecated" [ <Description> ]

Parsing a @not-deprecated tag produces a NotDeprecatedTag instance. Being a pure marker, it adds nothing beyond the $name and optional $description every Tag already carries.

final class NotDeprecatedTag extends FlagTag {}
07 July 2026