PHP TypeLang Help

@psalm-taint-escape

The @psalm-taint-escape tag marks a value as no longer tainted after passing through the described element. It is part of Psalm's taint-analysis annotations.

"@psalm-taint-escape" <Name> [ <Description> ]

Parsing a @psalm-taint-escape tag produces a PsalmTaintEscapeTag instance, carrying the parsed $identifier alongside the $name and optional $description every Tag already provides.

final class PsalmTaintEscapeTag extends IdentifierTag {}

See Psalm's security analysis annotations.

08 July 2026