@staticvar
The @staticvar tag documents the type of a static variable declared inside a function or method body with PHP's static $x = ...; syntax. Such a variable has no visible type annotation anywhere in the code, since PHP has no native syntax for typing it, so without this tag its type would only be discoverable by reading the initializer and tracing every assignment.
Parsing a @staticvar tag produces a StaticVarTag instance exposing $type — the documented TypeNode — and $variable, the variable's name without the leading $, or null when the tag names only a type. It shares this shape with @var.
@staticvar is part of the original phpDocumentor tag vocabulary, but phpDocumentor 3 has since dropped it entirely: it is absent from the current tag reference index, and no tags/staticvar.html page exists any longer. Only the archived phpDocumentor 1.x manual still describes it, as a legacy reference rather than current documentation — phpDocumentor 1.x manual, archived. It is supported here for classic-style docblocks.