@psalm-ignore-variable-property
The @psalm-ignore-variable-property tag suppresses "undefined property" issues for properties accessed on the annotated variable, letting Psalm skip verification of a magic or dynamically resolved property access.
"@psalm-ignore-variable-property" [ <Description> ]
Parsing a @psalm-ignore-variable-property tag produces a PsalmIgnoreVariablePropertyTag instance. Being a pure marker, it adds nothing beyond the $name and optional $description every Tag already carries.
final class PsalmIgnoreVariablePropertyTag extends FlagTag {}
08 July 2026