PHP TypeLang Help

@phpstan-ignore

The @phpstan-ignore tag silences the listed error identifiers reported on the current line, defined by PHPStan.

"@phpstan-ignore" <Name> { "," <Name> } [ <Description> ]

Parsing a @phpstan-ignore tag produces a PhpStanIgnoreTag instance, carrying the listed $issues alongside the $name and optional $description every Tag already provides.

final class PhpStanIgnoreTag extends IssueListTag {}

Documented by PHPStan.

08 July 2026